Claim.CreateSpnClaim(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 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
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET