SamlEvidence Konstruktory
Definicja
Ważne
Niektóre informacje odnoszą się do produktu w wersji wstępnej, który może zostać znacząco zmodyfikowany przed wydaniem. Firma Microsoft nie udziela żadnych gwarancji, jawnych lub domniemanych, w odniesieniu do informacji podanych w tym miejscu.
Inicjuje nowe wystąpienie klasy SamlEvidence.
Przeciążenia
SamlEvidence() |
Inicjuje nowe wystąpienie klasy SamlEvidence. |
SamlEvidence(IEnumerable<SamlAssertion>) |
Inicjuje SamlEvidence nowe wystąpienie klasy przy użyciu określonego zestawu asercji SAML. |
SamlEvidence(IEnumerable<String>) |
Inicjuje SamlEvidence nowe wystąpienie klasy przy użyciu określonego zestawu odwołań asercji SAML. |
SamlEvidence(IEnumerable<String>, IEnumerable<SamlAssertion>) |
Inicjuje SamlEvidence nowe wystąpienie klasy przy użyciu określonego zestawu odwołań asercji SAML i asercji SAML. |
SamlEvidence()
Inicjuje nowe wystąpienie klasy SamlEvidence.
public:
SamlEvidence();
public SamlEvidence ();
Public Sub New ()
Uwagi
Ten konstruktor inicjuje IsReadOnly właściwość na false
.
Dotyczy
SamlEvidence(IEnumerable<SamlAssertion>)
Inicjuje SamlEvidence nowe wystąpienie klasy przy użyciu określonego zestawu asercji 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 IEnumerable<T>SamlAssertion , który zawiera dowody, że urząd SAML oparł się na renderowaniu decyzji o autoryzacji. Assertions Ustawia właściwość .
Wyjątki
assertions
zawiera element członkowski, który ma wartość null
.
Uwagi
Użyj tego konstruktora, gdy masz kolekcję SamlAssertion obiektów, ale nie ma odwołań do asercji SAML.
Dotyczy
SamlEvidence(IEnumerable<String>)
Inicjuje SamlEvidence nowe wystąpienie klasy przy użyciu określonego zestawu odwołań asercji 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 , który zawiera identyfikator potwierdzenia SAML, który określa dowód, że urząd SAML polegał na renderowaniu decyzji o autoryzacji. AssertionIdReferences Ustawia właściwość .
Wyjątki
assertionIdReferences
zawiera element członkowski, który jest lub jest null
pusty.
Uwagi
Użyj tego konstruktora, gdy masz kolekcję odwołań asercji SAML, ale nie SamlAssertion ma obiektów.
Dotyczy
SamlEvidence(IEnumerable<String>, IEnumerable<SamlAssertion>)
Inicjuje SamlEvidence nowe wystąpienie klasy przy użyciu określonego zestawu odwołań asercji SAML i asercji 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 , który zawiera identyfikator potwierdzenia SAML, który określa dowód, że urząd SAML polegał na renderowaniu decyzji o autoryzacji. AssertionIdReferences Ustawia właściwość .
- assertions
- IEnumerable<SamlAssertion>
Typ IEnumerable<T>SamlAssertion , który zawiera dowody, że urząd SAML oparł się na renderowaniu decyzji o autoryzacji. Assertions Ustawia właściwość .
Wyjątki
assertionIdReferences
zawiera element członkowski, który jest lub jest null
pusty.
-lub-
assertions
zawiera element członkowski, który ma wartość null
.
-lub-
assertionIdReferences
i assertions
są zarówno null
.
Uwagi
Użyj tego konstruktora, gdy masz kolekcję odwołań do asercji SAML i kolekcję SamlAssertion obiektów.