Claim.CreateSpnClaim(String) Method

Definition

Creates a Claim object that represents the specified Service Principal Name (SPN).

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

Parameters

spn
String

The SPN of the entity associated with this 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 spn parameter is null.

Remarks

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

Property Value
ClaimType Spn
Resource The value of the spn parameter.
Right PossessProperty.

Applies to