次の方法で共有


Saml2AssertionKeyIdentifierClause コンストラクター

定義

Saml2AssertionKeyIdentifierClause クラスの新しいインスタンスを初期化します。

オーバーロード

Saml2AssertionKeyIdentifierClause(String)

ID を指定して Saml2AssertionKeyIdentifierClause クラスの新しいインスタンスを初期化します。

Saml2AssertionKeyIdentifierClause(String, Byte[], Int32)

ID、nonce、およびキー サイズを指定して、Saml2AssertionKeyIdentifierClause クラスの新しいインスタンスを初期化します。

Saml2AssertionKeyIdentifierClause(String)

ソース:
Saml2AssertionKeyIdentifierClause.cs
ソース:
Saml2AssertionKeyIdentifierClause.cs
ソース:
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[]

派生キーの作成に使用された nonce を格納する Byte の配列。 GetDerivationNonce() メソッドから返される値を設定します。

derivationLength
Int32

派生キーのサイズ。 DerivationLength プロパティの値を設定します。

例外

idnull または空の文字列です。

適用対象