SecurityTokenHandlerCollection.Item[] Proprietà

Definizione

Ottiene un gestore di token dalla raccolta che può gestire un token, un tipo di token o un identificatore del tipo di token specificato.

Overload

Nome Descrizione
Item[SecurityToken]

Ottiene un gestore di token da questa raccolta che può gestire il token di sicurezza specificato.

Item[String]

Ottiene un gestore di token da questa raccolta che può gestire l'identificatore di tipo specificato.

Item[Type]

Ottiene il gestore da questa raccolta che può gestire il tipo di token specificato.

Item[SecurityToken]

Ottiene un gestore di token da questa raccolta che può gestire il token di sicurezza specificato.

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

Parametri

token
SecurityToken

Token per il quale deve essere restituito il gestore.

Valore della proprietà

Gestore di token che può gestire il token specificato.

Si applica a

Item[String]

Ottiene un gestore di token da questa raccolta che può gestire l'identificatore di tipo specificato.

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

Parametri

tokenTypeIdentifier
String

URI che identifica il tipo di token.

Valore della proprietà

Gestore di token che può gestire i token che corrispondono all'identificatore di tipo specificato.

Si applica a

Item[Type]

Ottiene il gestore da questa raccolta che può gestire il tipo di token specificato.

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

Parametri

tokenType
Type

Tipo del token da gestire.

Valore della proprietà

Gestore di token che può gestire i token del tipo specificato.

Si applica a