Home 
  
  
 Change View 
  
  
 Print 
  
Initializes an instance of T:Microsoft.IdentityModel.Claims.ClaimsIdentity using an enumerated collection of T:Microsoft.IdentityModel.Claims.Claim objects and the specified authentication type.
Namespace: Microsoft.IdentityModel.Claims
Assembly: Microsoft.IdentityModel (in microsoft.identitymodel.dll)

Usage

Visual Basic
Dim claims As IEnumerable(Of Claim)
Dim authenticationType As String

Dim instance As New RsaClaimsIdentity(claims, authenticationType)

Syntax

Visual Basic
Public Sub New ( _
		claims As IEnumerable(Of Claim), _
		authenticationType As String _
)
C#
public RsaClaimsIdentity (
		IEnumerable<Claim> claims,
		string authenticationType
)
C++
public:
RsaClaimsIdentity (
		IEnumerable<Claim^>^ claims, 
		String^ authenticationType
)
J#
public RsaClaimsIdentity (
		IEnumerable<Claim> claims, 
		String authenticationType
)
JScript
public function RsaClaimsIdentity (
		claims : IEnumerable<Claim>, 
		authenticationType : String
)

Parameters

claims

The collection of Claim objects to populate the RsaClaimsIdentity with.

authenticationType

The type of authentication used.

Exceptions

Exception type Condition

Remarks


Platforms

Development Platforms

Windows Server 2003, Windows Vista

Target Platforms

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

See Also