次の方法で共有


Saml2AttributeStatement コンストラクター

定義

Saml2AttributeStatement クラスの新しいインスタンスを初期化します。

オーバーロード

名前 説明
Saml2AttributeStatement()

属性を使用せず、 Saml2AttributeStatement クラスの新しいインスタンスを初期化します。

Saml2AttributeStatement(IEnumerable<Saml2Attribute>)

Saml2AttributeStatement クラスの新しいインスタンスを初期化します。

Saml2AttributeStatement(Saml2Attribute)

Saml2AttributeStatement クラスの新しいインスタンスを初期化します。

Saml2AttributeStatement()

属性を使用せず、 Saml2AttributeStatement クラスの新しいインスタンスを初期化します。

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

注釈

Attributes プロパティは、空のコレクションに初期化されます。

適用対象

Saml2AttributeStatement(IEnumerable<Saml2Attribute>)

Saml2AttributeStatement クラスの新しいインスタンスを初期化します。

public:
 Saml2AttributeStatement(System::Collections::Generic::IEnumerable<System::IdentityModel::Tokens::Saml2Attribute ^> ^ attributes);
public Saml2AttributeStatement(System.Collections.Generic.IEnumerable<System.IdentityModel.Tokens.Saml2Attribute> attributes);
new System.IdentityModel.Tokens.Saml2AttributeStatement : seq<System.IdentityModel.Tokens.Saml2Attribute> -> System.IdentityModel.Tokens.Saml2AttributeStatement
Public Sub New (attributes As IEnumerable(Of Saml2Attribute))

パラメーター

attributes
IEnumerable<Saml2Attribute>

このステートメントに含まれる Attribute 要素を含む Saml2Attribute 型のコレクション。

例外

attributesnullです。

-又は-

attributesで指定されたコレクションの要素の 1 つがnullです。

注釈

Attributes プロパティ (コレクション) は、指定したコレクション内の属性で初期化されます。

適用対象

Saml2AttributeStatement(Saml2Attribute)

Saml2AttributeStatement クラスの新しいインスタンスを初期化します。

public:
 Saml2AttributeStatement(System::IdentityModel::Tokens::Saml2Attribute ^ attribute);
public Saml2AttributeStatement(System.IdentityModel.Tokens.Saml2Attribute attribute);
new System.IdentityModel.Tokens.Saml2AttributeStatement : System.IdentityModel.Tokens.Saml2Attribute -> System.IdentityModel.Tokens.Saml2AttributeStatement
Public Sub New (attribute As Saml2Attribute)

パラメーター

attribute
Saml2Attribute

このステートメントに含まれる 1 つの Attribute 要素を表す Saml2Attribute

例外

attributenullです。

注釈

Attributes プロパティ (コレクション) は、指定した属性で初期化されます。

適用対象