SamlAttributeStatement Construtores

Definição

Inicializa uma nova instância da classe SamlAttributeStatement.

Sobrecargas

Nome Description
SamlAttributeStatement()

Inicializa uma nova instância da classe SamlAttributeStatement.

SamlAttributeStatement(SamlSubject, IEnumerable<SamlAttribute>)

Inicializa uma nova instância da SamlAttributeStatement classe usando o assunto especificado e o conjunto de atributos associados ao assunto.

SamlAttributeStatement()

Inicializa uma nova instância da classe SamlAttributeStatement.

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

Aplica-se a

SamlAttributeStatement(SamlSubject, IEnumerable<SamlAttribute>)

Inicializa uma nova instância da SamlAttributeStatement classe usando o assunto especificado e o conjunto de atributos associados ao assunto.

public:
 SamlAttributeStatement(System::IdentityModel::Tokens::SamlSubject ^ samlSubject, System::Collections::Generic::IEnumerable<System::IdentityModel::Tokens::SamlAttribute ^> ^ attributes);
public SamlAttributeStatement(System.IdentityModel.Tokens.SamlSubject samlSubject, System.Collections.Generic.IEnumerable<System.IdentityModel.Tokens.SamlAttribute> attributes);
new System.IdentityModel.Tokens.SamlAttributeStatement : System.IdentityModel.Tokens.SamlSubject * seq<System.IdentityModel.Tokens.SamlAttribute> -> System.IdentityModel.Tokens.SamlAttributeStatement
Public Sub New (samlSubject As SamlSubject, attributes As IEnumerable(Of SamlAttribute))

Parâmetros

samlSubject
SamlSubject

Um SamlSubject que especifica o assunto da declaração.

attributes
IEnumerable<SamlAttribute>

Um IEnumerable<T> tipo SamlAttribute que contém um conjunto de atributos associados ao assunto.

Exceções

samlSubject é null.

attributes contém um membro que é null.

- ou -

attributes contém zero membros.

Comentários

A tabela a seguir especifica as propriedades definidas pelos parâmetros para este construtor.

Property Parâmetro
Attributes Attributes
SamlSubject samlSubject

Aplica-se a