Saml2AttributeStatement 생성자

정의

Saml2AttributeStatement 클래스의 새 인스턴스를 초기화합니다.

오버로드

Name Description
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>

이 문에 포함된 특성 요소를 포함하는 형식 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 요소를 나타내는 A입니다.

예외

attributenull입니다.

설명

Attributes 속성(컬렉션)은 지정된 특성으로 초기화됩니다.

적용 대상