Claim.CreateNameClaim(String) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.