SecurityTokenHandlerCollection.Item[] Proprietà

Definizione

Ottiene un gestore token dalla raccolta in grado di gestire un token specificato, un tipo di token o un identificatore del tipo di token.

Overload

Item[SecurityToken]

Ottiene un gestore token da questa raccolta in grado di gestire il token di sicurezza specificato.

Item[String]

Ottiene un gestore token da questa raccolta in grado di gestire l'identificatore del tipo specificato.

Item[Type]

Ottiene il gestore da questa raccolta in grado di gestire il tipo di token specificato.

Item[SecurityToken]

Ottiene un gestore token da questa raccolta in grado di 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 la 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 token da questa raccolta in grado di gestire l'identificatore del 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 token che corrispondono all'identificatore del tipo specificato.

Si applica a

Item[Type]

Ottiene il gestore da questa raccolta in grado di 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 di token da gestire.

Valore della proprietà

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

Si applica a