Extends the principal to include multiple claims-based identities.
Namespace: Microsoft.IdentityModel.Claims
Assembly: Microsoft.IdentityModel (in microsoft.identitymodel.dll)

Usage

Visual Basic
Dim instance As IClaimsPrincipal

Syntax

Visual Basic
Public Interface IClaimsPrincipal
		Inherits IPrincipal
C#
public interface IClaimsPrincipal : IPrincipal
C++
public interface class IClaimsPrincipal : IPrincipal
J#
public interface IClaimsPrincipal extends IPrincipal
JScript
public interface IClaimsPrincipal extends IPrincipal

Remarks

In the claims model multiple users or claims-based identities can be party to a single action. The IClaimsPrincipal interface defines the data and behavior of the identities associated with an execution context.

IClaimsPrincipal exposes a collection of identities, each of which implements IClaimsIdentity. In a common case, there will be a single issuer and a single token and the identities collection will only have one element. However, it’s possible in advanced scenarios for a relying party to ask (via policy) for more than one security token, potentially from different issuers.


Platforms

Development Platforms

Windows Server 2003, Windows Vista

Target Platforms

Windows Server 2008, Windows Vista, Not tested on Windows XP

See Also