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 SamlAdvice klasy 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 SamlAdvice klasy przy użyciu określonych kolekcji asercji SAML i 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 serializacji go do kodu XML przez wywołanie WriteXml metody, pusty <saml:Advice>
element jest generowany przez metodę WriteXml .
Dotyczy
SamlAdvice(IEnumerable<SamlAssertion>)
Inicjuje nowe wystąpienie SamlAdvice klasy 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>SamlAssertion zawierający asercji SAML, który dostarcza dodatkowe informacje na temat asercji SAML.
Wyjątki
assertions
null
zawiera element .
Uwagi
Elementy parametru assertions
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>
String Typ IEnumerable<T> zawierający kolekcję odwołań do asercji SAML, które dostarczają dodatkowych informacji na temat asercji SAML.
Wyjątki
references
null
zawiera element .
Uwagi
Elementy parametru references
są dodawane do AssertionIdReferences właściwości .
Dotyczy
SamlAdvice(IEnumerable<String>, IEnumerable<SamlAssertion>)
Inicjuje nowe wystąpienie SamlAdvice klasy przy użyciu określonych kolekcji asercji SAML i 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>
String Typ IEnumerable<T> zawierający kolekcję odwołań do asercji SAML, które dostarczają dodatkowych informacji na temat asercji SAML.
- assertions
- IEnumerable<SamlAssertion>
Typ IEnumerable<T>SamlAssertion zawierający asercji SAML, który dostarcza dodatkowe informacje na temat asercji SAML.
Wyjątki
Uwagi
Elementy parametru references
są dodawane do AssertionIdReferences właściwości .
Elementy parametru assertions
są dodawane do Assertions właściwości .