다음을 통해 공유


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에서 지정한 컬렉션의 요소 중 하나는 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

이 문에 포함된 단일 특성 요소를 나타내는 Saml2Attribute입니다.

예외

attribute이(가) null인 경우

설명

Attributes 속성 (컬렉션)은 지정된 된 특성을 사용 하 여 초기화 됩니다.

적용 대상