Claim.CreateRsaClaim(RSA) 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 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
التعاون معنا على GitHub
يمكن العثور على مصدر هذا المحتوى على GitHub حيث يمكنك أيضاً إضافة مشاكل وطلبات سحب ومراجعتها. للحصول على معلومات إضافية، اطلع على دليل المساهم لدينا.