次の方法で共有


SamlEvidence コンストラクター

定義

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

オーバーロード

SamlEvidence()

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

SamlEvidence(IEnumerable<SamlAssertion>)

指定した SAML アサーションのセットを使用して、SamlEvidence クラスの新しいインスタンスを初期化します。

SamlEvidence(IEnumerable<String>)

指定した SAML アサーション参照のセットを使用して、SamlEvidence クラスの新しいインスタンスを初期化します。

SamlEvidence(IEnumerable<String>, IEnumerable<SamlAssertion>)

指定した SAML アサーション参照と SAML アサーションのセットを使用して、SamlEvidence クラスの新しいインスタンスを初期化します。

SamlEvidence()

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

public:
 SamlEvidence();
public SamlEvidence ();
Public Sub New ()

注釈

このコンストラクターは、IsReadOnly プロパティを false に初期化します。

適用対象

SamlEvidence(IEnumerable<SamlAssertion>)

指定した SAML アサーションのセットを使用して、SamlEvidence クラスの新しいインスタンスを初期化します。

public:
 SamlEvidence(System::Collections::Generic::IEnumerable<System::IdentityModel::Tokens::SamlAssertion ^> ^ assertions);
public SamlEvidence (System.Collections.Generic.IEnumerable<System.IdentityModel.Tokens.SamlAssertion> assertions);
new System.IdentityModel.Tokens.SamlEvidence : seq<System.IdentityModel.Tokens.SamlAssertion> -> System.IdentityModel.Tokens.SamlEvidence
Public Sub New (assertions As IEnumerable(Of SamlAssertion))

パラメーター

assertions
IEnumerable<SamlAssertion>

SAML 証明機関が承認決定のために依存する証拠を含む IEnumerable<T> 型の SamlAssertionAssertions プロパティを設定します。

例外

assertions は、null であるメンバーを含みます。

注釈

このコンストラクターは、SamlAssertion オブジェクトのコレクションはあるが、SAML アサーション参照がない場合に使用します。

適用対象

SamlEvidence(IEnumerable<String>)

指定した SAML アサーション参照のセットを使用して、SamlEvidence クラスの新しいインスタンスを初期化します。

public:
 SamlEvidence(System::Collections::Generic::IEnumerable<System::String ^> ^ assertionIdReferences);
public SamlEvidence (System.Collections.Generic.IEnumerable<string> assertionIdReferences);
new System.IdentityModel.Tokens.SamlEvidence : seq<string> -> System.IdentityModel.Tokens.SamlEvidence
Public Sub New (assertionIdReferences As IEnumerable(Of String))

パラメーター

assertionIdReferences
IEnumerable<String>

SAML 証明機関が承認決定のために依存する証拠を指定する SAML アサーションの識別子を含む IEnumerable<T> 型の StringAssertionIdReferences プロパティを設定します。

例外

assertionIdReferences は、null または空のメンバーを含みます。

注釈

このコンストラクターは、SAML アサーション参照のコレクションはあるが、SamlAssertion オブジェクトがない場合に使用します。

適用対象

SamlEvidence(IEnumerable<String>, IEnumerable<SamlAssertion>)

指定した SAML アサーション参照と SAML アサーションのセットを使用して、SamlEvidence クラスの新しいインスタンスを初期化します。

public:
 SamlEvidence(System::Collections::Generic::IEnumerable<System::String ^> ^ assertionIdReferences, System::Collections::Generic::IEnumerable<System::IdentityModel::Tokens::SamlAssertion ^> ^ assertions);
public SamlEvidence (System.Collections.Generic.IEnumerable<string> assertionIdReferences, System.Collections.Generic.IEnumerable<System.IdentityModel.Tokens.SamlAssertion> assertions);
new System.IdentityModel.Tokens.SamlEvidence : seq<string> * seq<System.IdentityModel.Tokens.SamlAssertion> -> System.IdentityModel.Tokens.SamlEvidence
Public Sub New (assertionIdReferences As IEnumerable(Of String), assertions As IEnumerable(Of SamlAssertion))

パラメーター

assertionIdReferences
IEnumerable<String>

SAML 証明機関が承認決定のために依存する証拠を指定する SAML アサーションの識別子を含む IEnumerable<T> 型の StringAssertionIdReferences プロパティを設定します。

assertions
IEnumerable<SamlAssertion>

SAML 証明機関が承認決定のために依存する証拠を含む IEnumerable<T> 型の SamlAssertionAssertions プロパティを設定します。

例外

assertionIdReferences は、null または空のメンバーを含みます。

- または -

assertions は、null であるメンバーを含みます。

- または -

assertionIdReferencesassertions が両方とも null です。

注釈

このコンストラクターは、SAML アサーション参照のコレクションと SamlAssertion オブジェクトのコレクションがある場合に使用します。

適用対象