Claim.CreateRsaClaim(RSA) Method

Definition

Creates a Claim object that represents the specified RSA key.

public:
 static System::IdentityModel::Claims::Claim ^ CreateRsaClaim(System::Security::Cryptography::RSA ^ rsa);
public static System.IdentityModel.Claims.Claim CreateRsaClaim (System.Security.Cryptography.RSA rsa);
static member CreateRsaClaim : System.Security.Cryptography.RSA -> System.IdentityModel.Claims.Claim
Public Shared Function CreateRsaClaim (rsa As RSA) As Claim

Parameters

rsa
RSA

An RSA object that represents an RSA cryptographic key. 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 rsa parameter is null.

Remarks

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

Property Value
ClaimType Rsa
Resource The value of the rsa parameter.
Right PossessProperty.

Applies to