Share via


SecurityTokenHandlerCollection.Item[] Propiedad

Definición

Obtiene un controlador de token de la colección que pueda identificar a un token especificado, tipo de token o identificador del tipo de token.

Sobrecargas

Item[SecurityToken]

Obtiene un controlador de token de esta colección que pueda controlar el token de seguridad especificado.

Item[String]

Obtiene un controlador de token de esta colección que pueda controlar el identificador de tipo especificado.

Item[Type]

Obtiene el controlador de esta colección que puede controlar el tipo de token especificado.

Item[SecurityToken]

Obtiene un controlador de token de esta colección que pueda controlar el token de seguridad 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

Token para la que se debe devolver el controlador.

Valor de propiedad

Un controlador de token que puede administrar el token especificado.

Se aplica a

Item[String]

Obtiene un controlador de token de esta colección que pueda controlar el 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

Un URI que identifica el tipo de token.

Valor de propiedad

Un controlador de token que puede controlar los tokens que correspondan al identificador de tipo especificado.

Se aplica a

Item[Type]

Obtiene el controlador de esta colección que puede controlar el 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

Tipo del token que se va a controlar.

Valor de propiedad

Un controlador de token que puede administrar los tokens del tipo especificado.

Se aplica a