SamlAdvice 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 SamlAdvice.
Przeciążenia
| SamlAdvice() |
Inicjuje nowe wystąpienie klasy SamlAdvice. |
| SamlAdvice(IEnumerable<SamlAssertion>) |
Inicjuje nowe wystąpienie klasy SamlAdvice przy użyciu określonej kolekcji asercji SAML. |
| SamlAdvice(IEnumerable<String>) |
Inicjuje nowe wystąpienie klasy SamlAdvice. |
| SamlAdvice(IEnumerable<String>, IEnumerable<SamlAssertion>) |
Inicjuje nowe wystąpienie klasy przy użyciu określonych kolekcji asercji SAML i SamlAdvice odwołań do asercji SAML. |
SamlAdvice()
Inicjuje nowe wystąpienie klasy SamlAdvice.
public:
SamlAdvice();
public SamlAdvice ();
Public Sub New ()
Uwagi
Gdy ten konstruktor jest wywoływany i wystąpienie nie jest modyfikowane przed serializację go do kodu XML przez wywołanie metody, pusty element jest WriteXml <saml:Advice> generowany przez WriteXml metodę.
Dotyczy
SamlAdvice(IEnumerable<SamlAssertion>)
Inicjuje nowe wystąpienie klasy SamlAdvice przy użyciu określonej kolekcji asercji SAML.
public:
SamlAdvice(System::Collections::Generic::IEnumerable<System::IdentityModel::Tokens::SamlAssertion ^> ^ assertions);
public SamlAdvice (System.Collections.Generic.IEnumerable<System.IdentityModel.Tokens.SamlAssertion> assertions);
new System.IdentityModel.Tokens.SamlAdvice : seq<System.IdentityModel.Tokens.SamlAssertion> -> System.IdentityModel.Tokens.SamlAdvice
Public Sub New (assertions As IEnumerable(Of SamlAssertion))
Parametry
- assertions
- IEnumerable<SamlAssertion>
Typ, IEnumerable<T> który SamlAssertion zawiera asercji SAML, które zawierają dodatkowe informacje dla asercji SAML.
Wyjątki
assertions Element zawiera null element .
Uwagi
Elementy assertions parametru są dodawane do Assertions właściwości .
Dotyczy
SamlAdvice(IEnumerable<String>)
Inicjuje nowe wystąpienie klasy SamlAdvice.
public:
SamlAdvice(System::Collections::Generic::IEnumerable<System::String ^> ^ references);
public SamlAdvice (System.Collections.Generic.IEnumerable<string> references);
new System.IdentityModel.Tokens.SamlAdvice : seq<string> -> System.IdentityModel.Tokens.SamlAdvice
Public Sub New (references As IEnumerable(Of String))
Parametry
- references
- IEnumerable<String>
Typ, IEnumerable<T> który String zawiera kolekcję odwołań do asercji SAML, które dostarczają dodatkowych informacji na temat asercji SAML.
Wyjątki
references Element zawiera null element .
Uwagi
Elementy references parametru są dodawane do AssertionIdReferences właściwości .
Dotyczy
SamlAdvice(IEnumerable<String>, IEnumerable<SamlAssertion>)
Inicjuje nowe wystąpienie klasy przy użyciu określonych kolekcji asercji SAML i SamlAdvice odwołań do asercji SAML.
public:
SamlAdvice(System::Collections::Generic::IEnumerable<System::String ^> ^ references, System::Collections::Generic::IEnumerable<System::IdentityModel::Tokens::SamlAssertion ^> ^ assertions);
public SamlAdvice (System.Collections.Generic.IEnumerable<string> references, System.Collections.Generic.IEnumerable<System.IdentityModel.Tokens.SamlAssertion> assertions);
new System.IdentityModel.Tokens.SamlAdvice : seq<string> * seq<System.IdentityModel.Tokens.SamlAssertion> -> System.IdentityModel.Tokens.SamlAdvice
Public Sub New (references As IEnumerable(Of String), assertions As IEnumerable(Of SamlAssertion))
Parametry
- references
- IEnumerable<String>
Typ, IEnumerable<T> który String zawiera kolekcję odwołań do asercji SAML, które dostarczają dodatkowych informacji na temat asercji SAML.
- assertions
- IEnumerable<SamlAssertion>
Typ, IEnumerable<T> który SamlAssertion zawiera asercji SAML, które zapewniają dodatkowe informacje dla asercji SAML.
Wyjątki
references Element zawiera null element .
-lub-
assertions Element zawiera null element .
Uwagi
Elementy references parametru są dodawane do AssertionIdReferences właściwości .
Elementy assertions parametru są dodawane do Assertions właściwości .