Saml2AssertionKeyIdentifierClause 构造函数

定义

初始化 Saml2AssertionKeyIdentifierClause 类的新实例。

重载

Saml2AssertionKeyIdentifierClause(String)

为指定的 ID初始化 Saml2AssertionKeyIdentifierClause 类的新实例。

Saml2AssertionKeyIdentifierClause(String, Byte[], Int32)

使用指定的密钥大小、 ID 、 nonce 初始化 Saml2AssertionKeyIdentifierClause 类的新实例。

Saml2AssertionKeyIdentifierClause(String)

Source:
Saml2AssertionKeyIdentifierClause.cs
Source:
Saml2AssertionKeyIdentifierClause.cs
Source:
Saml2AssertionKeyIdentifierClause.cs

为指定的 ID初始化 Saml2AssertionKeyIdentifierClause 类的新实例。

public:
 Saml2AssertionKeyIdentifierClause(System::String ^ assertionId);
public:
 Saml2AssertionKeyIdentifierClause(System::String ^ id);
public Saml2AssertionKeyIdentifierClause (string assertionId);
public Saml2AssertionKeyIdentifierClause (string id);
new System.IdentityModel.Tokens.Saml2AssertionKeyIdentifierClause : string -> System.IdentityModel.Tokens.Saml2AssertionKeyIdentifierClause
new System.IdentityModel.Tokens.Saml2AssertionKeyIdentifierClause : string -> System.IdentityModel.Tokens.Saml2AssertionKeyIdentifierClause
Public Sub New (assertionId As String)
Public Sub New (id As String)

参数

assertionIdid
String

例外

idnull 或空字符串。

适用于

Saml2AssertionKeyIdentifierClause(String, Byte[], Int32)

使用指定的密钥大小、 ID 、 nonce 初始化 Saml2AssertionKeyIdentifierClause 类的新实例。

public:
 Saml2AssertionKeyIdentifierClause(System::String ^ id, cli::array <System::Byte> ^ derivationNonce, int derivationLength);
public Saml2AssertionKeyIdentifierClause (string id, byte[] derivationNonce, int derivationLength);
new System.IdentityModel.Tokens.Saml2AssertionKeyIdentifierClause : string * byte[] * int -> System.IdentityModel.Tokens.Saml2AssertionKeyIdentifierClause
Public Sub New (id As String, derivationNonce As Byte(), derivationLength As Integer)

参数

id
String

要生成的定义子句的 ID。

derivationNonce
Byte[]

一个 Byte 数组,包含用于创建派生密钥的 Nonce。 设置 GetDerivationNonce() 方法所返回的值。

derivationLength
Int32

派生密钥的大小。 设置 DerivationLength 属性的值。

例外

idnull 或空字符串。

适用于