SecurityTokenHandlerCollection.Item[] Propriedade
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Obtém um manipulador de token da coleção que pode manipular um token, tipo de token ou identificador de tipo de token especificado.
Sobrecargas
| Nome | Description |
|---|---|
| Item[SecurityToken] |
Obtém um manipulador de token dessa coleção que pode lidar com o token de segurança especificado. |
| Item[String] |
Obtém um manipulador de token dessa coleção que pode lidar com o identificador de tipo especificado. |
| Item[Type] |
Obtém o manipulador dessa coleção que pode lidar com o tipo de token especificado. |
Item[SecurityToken]
Obtém um manipulador de token dessa coleção que pode lidar com o token de segurança especificado.
public:
property System::IdentityModel::Tokens::SecurityTokenHandler ^ default[System::IdentityModel::Tokens::SecurityToken ^] { System::IdentityModel::Tokens::SecurityTokenHandler ^ get(System::IdentityModel::Tokens::SecurityToken ^ token); };
public System.IdentityModel.Tokens.SecurityTokenHandler this[System.IdentityModel.Tokens.SecurityToken token] { get; }
member this.Item(System.IdentityModel.Tokens.SecurityToken) : System.IdentityModel.Tokens.SecurityTokenHandler
Default Public ReadOnly Property Item(token As SecurityToken) As SecurityTokenHandler
Parâmetros
- token
- SecurityToken
O token para o qual o manipulador deve ser retornado.
Valor da propriedade
Um manipulador de token que pode manipular o token especificado.
Aplica-se a
Item[String]
Obtém um manipulador de token dessa coleção que pode lidar com o identificador de tipo especificado.
public:
property System::IdentityModel::Tokens::SecurityTokenHandler ^ default[System::String ^] { System::IdentityModel::Tokens::SecurityTokenHandler ^ get(System::String ^ tokenTypeIdentifier); };
public System.IdentityModel.Tokens.SecurityTokenHandler this[string tokenTypeIdentifier] { get; }
member this.Item(string) : System.IdentityModel.Tokens.SecurityTokenHandler
Default Public ReadOnly Property Item(tokenTypeIdentifier As String) As SecurityTokenHandler
Parâmetros
- tokenTypeIdentifier
- String
Um URI que identifica o tipo de token.
Valor da propriedade
Um manipulador de token que pode manipular tokens que correspondem ao identificador de tipo especificado.
Aplica-se a
Item[Type]
Obtém o manipulador dessa coleção que pode lidar com o tipo de token especificado.
public:
property System::IdentityModel::Tokens::SecurityTokenHandler ^ default[Type ^] { System::IdentityModel::Tokens::SecurityTokenHandler ^ get(Type ^ tokenType); };
public System.IdentityModel.Tokens.SecurityTokenHandler this[Type tokenType] { get; }
member this.Item(Type) : System.IdentityModel.Tokens.SecurityTokenHandler
Default Public ReadOnly Property Item(tokenType As Type) As SecurityTokenHandler
Parâmetros
- tokenType
- Type
O tipo do token a ser manipulado.
Valor da propriedade
Um manipulador de token que pode manipular tokens do tipo especificado.