Creates a with the specified type, value, value type, and issuer.
Namespace: Microsoft.IdentityModel.Claims
Assembly: Microsoft.IdentityModel (in microsoft.identitymodel.dll)

Usage

Visual Basic
Dim claimType As String
Dim value As String
Dim valueType As String
Dim issuer As String

Dim instance As New Claim(claimType, value, valueType, issuer)

Syntax

Visual Basic
Public Sub New ( _
		claimType As String, _
		value As String, _
		valueType As String, _
		issuer As String _
)
C#
public Claim (
		string claimType,
		string value,
		string valueType,
		string issuer
)
C++
public:
Claim (
		String^ claimType, 
		String^ value, 
		String^ valueType, 
		String^ issuer
)
J#
public Claim (
		String claimType, 
		String value, 
		String valueType, 
		String issuer
)
JScript
public function Claim (
		claimType : String, 
		value : String, 
		valueType : String, 
		issuer : String
)

Parameters

claimType

The claim type.

value

The claim value.

valueType

The claim value type. If this parameter is null, then F:Microsoft.IdentityModel.Claims.ClaimValueTypes.String is used.

issuer

The claim issuer. Can be null to specify no issuer.

Exceptions

Exception type Condition

Remarks

P:Microsoft.IdentityModel.Claims.Claim.OriginalIssuer is set to the value of the issuer parameter. P:Microsoft.IdentityModel.Claims.Claim.Subject is set to null.


Platforms

Development Platforms

Windows Server 2003, Windows Vista

Target Platforms

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

See Also