Sdílet prostřednictvím


SamlEvidence Konstruktory

Definice

Inicializuje novou instanci SamlEvidence třídy .

Přetížení

SamlEvidence()

Inicializuje novou instanci SamlEvidence třídy .

SamlEvidence(IEnumerable<SamlAssertion>)

Inicializuje novou instanci SamlEvidence třídy pomocí zadané sady kontrolních výrazů SAML.

SamlEvidence(IEnumerable<String>)

Inicializuje novou instanci SamlEvidence třídy pomocí zadané sady odkazů na kontrolní výraz SAML.

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

Inicializuje novou instanci SamlEvidence třídy pomocí zadané sady odkazů na kontrolní výraz SAML a kontrolní výrazy SAML.

SamlEvidence()

Inicializuje novou instanci SamlEvidence třídy .

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

Poznámky

Tento konstruktor inicializuje IsReadOnly vlastnost do false.

Platí pro

SamlEvidence(IEnumerable<SamlAssertion>)

Inicializuje novou instanci SamlEvidence třídy pomocí zadané sady kontrolních výrazů SAML.

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))

Parametry

assertions
IEnumerable<SamlAssertion>

Typ SamlAssertion obsahující IEnumerable<T> důkaz, že autorita SAML se spoléhala na vykreslení rozhodnutí o autorizaci. Assertions Nastaví vlastnost .

Výjimky

assertions obsahuje člena, který je null.

Poznámky

Tento konstruktor použijte, pokud máte kolekci SamlAssertion objektů, ale žádné odkazy na kontrolní výraz SAML.

Platí pro

SamlEvidence(IEnumerable<String>)

Inicializuje novou instanci SamlEvidence třídy pomocí zadané sady odkazů na kontrolní výraz SAML.

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))

Parametry

assertionIdReferences
IEnumerable<String>

Typ IEnumerable<T>String obsahující identifikátor kontrolního výrazu SAML, který určuje důkaz, na který se autorita SAML spoléhala při vykreslení rozhodnutí o autorizaci. AssertionIdReferences Nastaví vlastnost .

Výjimky

assertionIdReferences obsahuje člen, který je null nebo je prázdný.

Poznámky

Tento konstruktor použijte, pokud máte kolekci odkazů kontrolních výrazů SAML, ale žádné SamlAssertion objekty.

Platí pro

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

Inicializuje novou instanci SamlEvidence třídy pomocí zadané sady odkazů na kontrolní výraz SAML a kontrolní výrazy SAML.

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))

Parametry

assertionIdReferences
IEnumerable<String>

Typ IEnumerable<T>String obsahující identifikátor kontrolního výrazu SAML, který určuje důkaz, na který se autorita SAML spoléhala při vykreslení rozhodnutí o autorizaci. AssertionIdReferences Nastaví vlastnost .

assertions
IEnumerable<SamlAssertion>

Typ SamlAssertion obsahující IEnumerable<T> důkaz, že autorita SAML se spoléhala na vykreslení rozhodnutí o autorizaci. Assertions Nastaví vlastnost .

Výjimky

assertionIdReferences obsahuje člen, který je null nebo je prázdný.

-nebo-

assertions obsahuje člena, který je null.

-nebo-

assertionIdReferences a assertions jsou oba null.

Poznámky

Tento konstruktor použijte, pokud máte kolekci odkazů kontrolních výrazů SAML a kolekci SamlAssertion objektů.

Platí pro