次の方法で共有


SamlAssertionKeyIdentifierClause コンストラクター

定義

オーバーロード

SamlAssertionKeyIdentifierClause(String)

指定した SAML アサーション識別子を使用して、SamlAssertionKeyIdentifierClause クラスの新しいインスタンスを初期化します。

SamlAssertionKeyIdentifierClause(String, Byte[], Int32)

指定した SAML アサーション識別子、nonce、およびキー長を使用して、SamlAssertionKeyIdentifierClause クラスの新しいインスタンスを初期化します。

SamlAssertionKeyIdentifierClause(String)

ソース:
SamlAssertionKeyIdentifierClause.cs
ソース:
SamlAssertionKeyIdentifierClause.cs
ソース:
SamlAssertionKeyIdentifierClause.cs

指定した SAML アサーション識別子を使用して、SamlAssertionKeyIdentifierClause クラスの新しいインスタンスを初期化します。

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

パラメーター

assertionId
String

キー識別子を含む SamlAssertion の識別子。

例外

assertionIdnullです。

注釈

AssertionIdSamlAssertion プロパティをこのコンストラクターに渡します。

適用対象

SamlAssertionKeyIdentifierClause(String, Byte[], Int32)

指定した SAML アサーション識別子、nonce、およびキー長を使用して、SamlAssertionKeyIdentifierClause クラスの新しいインスタンスを初期化します。

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

パラメーター

assertionId
String

キー識別子を含む SamlAssertion の識別子。

derivationNonce
Byte[]

派生キーの作成に使用された nonce を格納する Byte の配列。

derivationLength
Int32

派生キーのサイズ。

例外

assertionIdnullです。

注釈

AssertionIdSamlAssertion プロパティをこのコンストラクターに渡します。

derivationNonce クラスが送信 SOAP メッセージにシリアル化される場合、derivationLength パラメーターと SamlAssertionKeyIdentifierClause パラメーターは無視されます。

適用対象