Claim.CreateNameClaim(String) Method

Definition

Creates a Claim object that represents the specified name.

public:
 static System::IdentityModel::Claims::Claim ^ CreateNameClaim(System::String ^ name);
public static System.IdentityModel.Claims.Claim CreateNameClaim (string name);
static member CreateNameClaim : string -> System.IdentityModel.Claims.Claim
Public Shared Function CreateNameClaim (name As String) As Claim

Parameters

name
String

The name of the entity associated with the claim. This parameter must not be null. If this parameter is null, this method throws an ArgumentNullException exception.

Returns

The Claim object this method creates.

Exceptions

The name parameter is null.

Remarks

The Claim object this method creates has the property values shown in the following table.

Property Value
ClaimType Name
Resource The value of the name parameter.
Right PossessProperty.

Applies to