SamlAdvice 建構函式
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
初始化 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
參數的項目會加入到 AssertionIdReferences 屬性中。
assertions
參數的項目會加入到 Assertions 屬性中。