Claim(String, Object, String) Constructor

Definition

Initializes a new instance of the Claim class with the specified type, resource, and right.

public:
 Claim(System::String ^ claimType, System::Object ^ resource, System::String ^ right);
public Claim (string claimType, object resource, string right);
new System.IdentityModel.Claims.Claim : string * obj * string -> System.IdentityModel.Claims.Claim
Public Sub New (claimType As String, resource As Object, right As String)

Parameters

claimType
String

A uniform resource identifier (URI) that represents a claim type.

resource
Object

The object with which the new claim is associated.

right
String

The URI of the right associated with the claim.

Exceptions

claimType is null.

-or-

right is null.

claimType is zero length.

-or-

right is zero length.

Remarks

Windows Communication Foundation ships a set of pre-defined claim types and rights that are represented as members of the ClaimTypes and Rights classes.

Applies to