SamlAssertion.Statements Propriedade

Definição

Obtém o conjunto de instruções SAML associadas à asserção SAML.Gets the set of SAML statements associated with the SAML assertion.

public:
 property System::Collections::Generic::IList<System::IdentityModel::Tokens::SamlStatement ^> ^ Statements { System::Collections::Generic::IList<System::IdentityModel::Tokens::SamlStatement ^> ^ get(); };
public System.Collections.Generic.IList<System.IdentityModel.Tokens.SamlStatement> Statements { get; }
member this.Statements : System.Collections.Generic.IList<System.IdentityModel.Tokens.SamlStatement>
Public ReadOnly Property Statements As IList(Of SamlStatement)

Valor da propriedade

IList<SamlStatement>

Um IList<T> do tipo SamlStatement que contém as instruções SAML associadas à Asserção SAML.An IList<T> of type SamlStatement that contains the SAML statements associated with the SAML assertion.

Comentários

Use o SamlAssertion para definir as instruções SAML associadas a uma ASSERÇÃO SAML ou adicioná-las diretamente à coleção retornada por essa propriedade quando a IsReadOnly propriedade for false .Use the SamlAssertion to set the SAML statements associated with a SAML assertion or add it directly to the collection that is returned by this property when the IsReadOnly property is false.

A tabela a seguir mapeia os três tipos de instruções SAML definidas nas asserções e no protocolo para a especificação SAML do OASIS para seus respectivos tipos.The following table maps the three types of SAML statements defined in the Assertions and Protocol for the OASIS SAML specification to their respective types.

Tipo de instruçãoStatement Type Tipo CLRCLR Type
AutenticaçãoAuthentication SamlAuthenticationStatement
AtributoAttribute SamlAttributeStatement
Decisão de autorizaçãoAuthorization decision SamlAuthorizationDecisionStatement
Instrução definida em um esquema de extensãoStatement defined in an extension schema SamlStatement
Declaração de assunto definida em um esquema de extensãoSubject statement defined in an extension schema SamlSubjectStatement

Aplica-se a