Share via


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

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

例外

attributenullです。

注釈

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

適用対象