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
或空字串。