SamlEvidence コンストラクター
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
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> 型の SamlAssertion。 Assertions プロパティを設定します。
例外
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> 型の String。 AssertionIdReferences プロパティを設定します。
例外
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> 型の String。 AssertionIdReferences プロパティを設定します。
- assertions
- IEnumerable<SamlAssertion>
SAML 証明機関が承認決定のために依存する証拠を含む IEnumerable<T> 型の SamlAssertion。 Assertions プロパティを設定します。
例外
assertionIdReferences
は、null
または空のメンバーを含みます。
- または -
assertions
は、null
であるメンバーを含みます。
- または -
assertionIdReferences
と assertions
が両方とも null
です。
注釈
このコンストラクターは、SAML アサーション参照のコレクションと SamlAssertion オブジェクトのコレクションがある場合に使用します。
適用対象
.NET