Saml2AssertionKeyIdentifierClause 构造函数
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
初始化 Saml2AssertionKeyIdentifierClause 类的新实例。
重载
Saml2AssertionKeyIdentifierClause(String) |
为指定的 ID初始化 Saml2AssertionKeyIdentifierClause 类的新实例。 |
Saml2AssertionKeyIdentifierClause(String, Byte[], Int32) |
使用指定的密钥大小、 ID 、 nonce 初始化 Saml2AssertionKeyIdentifierClause 类的新实例。 |
Saml2AssertionKeyIdentifierClause(String)
为指定的 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
例外
id
为 null
或空字符串。
适用于
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 属性的值。
例外
id
为 null
或空字符串。