共用方式為


SamlAdvice 建構函式

定義

初始化 SamlAdvice 類別的新執行個體。

多載

SamlAdvice()

初始化 SamlAdvice 類別的新執行個體。

SamlAdvice(IEnumerable<SamlAssertion>)

使用指定的 SAML 判斷提示集合,初始化 SamlAdvice 類別的新執行個體。

SamlAdvice(IEnumerable<String>)

初始化 SamlAdvice 類別的新執行個體。

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

使用指定的 SAML 判斷提示集合和 SAML 判斷提示參考集合,初始化 SamlAdvice 類別的新執行個體。

SamlAdvice()

初始化 SamlAdvice 類別的新執行個體。

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

備註

當呼叫這個建構函式,而且該執行個體在序列化為 XML (透過呼叫 WriteXml 方法) 之前並未遭到修改,則 <saml:Advice> 方法會產生一個空的 WriteXml 項目。

適用於

SamlAdvice(IEnumerable<SamlAssertion>)

使用指定的 SAML 判斷提示集合,初始化 SamlAdvice 類別的新執行個體。

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

參數

assertions
IEnumerable<SamlAssertion>

型別為 IEnumerable<T>SamlAssertion,其中包含提供 SAML 判斷提示之其他資訊的 SAML 判斷提示。

例外狀況

assertions 包含 null 項目。

備註

assertions 參數的項目會加入到 Assertions 屬性中。

適用於

SamlAdvice(IEnumerable<String>)

初始化 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))

參數

references
IEnumerable<String>

型別為 IEnumerable<T>String,其中包含提供 SAML 判斷提示之其他資訊的 SAML 判斷提示參考集合。

例外狀況

references 包含 null 項目。

備註

references 參數的項目會加入到 AssertionIdReferences 屬性中。

適用於

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

使用指定的 SAML 判斷提示集合和 SAML 判斷提示參考集合,初始化 SamlAdvice 類別的新執行個體。

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

參數

references
IEnumerable<String>

型別為 IEnumerable<T>String,其中包含提供 SAML 判斷提示之其他資訊的 SAML 判斷提示參考集合。

assertions
IEnumerable<SamlAssertion>

型別為 IEnumerable<T>SamlAssertion,其中包含提供 SAML 判斷提示之其他資訊的 SAML 判斷提示。

例外狀況

references 包含 null 項目。

-或-

assertions 包含 null 項目。

備註

references 參數的項目會加入到 AssertionIdReferences 屬性中。

assertions 參數的項目會加入到 Assertions 屬性中。

適用於