Compartilhar via


TrustLevelCollection.Item[] Propriedade

Definição

Obtém o item TrustLevel especificado no objeto TrustLevelCollection.

Sobrecargas

Item[Int32]

Obtém ou define o item TrustLevel no índice especificado dentro do objeto TrustLevelCollection.

Item[String]

Obtém o objeto TrustLevel no índice especificado.

Item[Int32]

Obtém ou define o item TrustLevel no índice especificado dentro do objeto TrustLevelCollection.

public:
 property System::Web::Configuration::TrustLevel ^ default[int] { System::Web::Configuration::TrustLevel ^ get(int index); void set(int index, System::Web::Configuration::TrustLevel ^ value); };
public System.Web.Configuration.TrustLevel this[int index] { get; set; }
member this.Item(int) : System.Web.Configuration.TrustLevel with get, set
Default Public Property Item(index As Integer) As TrustLevel

Parâmetros

index
Int32

O índice numérico da TrustLevel.

Valor da propriedade

TrustLevel

Um TrustLevel no índice especificado.

Comentários

Se um TrustLevel objeto existir no índice especificado, o TrustLevel objeto será removido e um novo será adicionado. Se nenhum TrustLevel objeto existir no índice, um novo será adicionado.

Aplica-se a

Item[String]

Obtém o objeto TrustLevel no índice especificado.

public:
 property System::Web::Configuration::TrustLevel ^ default[System::String ^] { System::Web::Configuration::TrustLevel ^ get(System::String ^ key); };
public System.Web.Configuration.TrustLevel this[string key] { get; }
member this.Item(string) : System.Web.Configuration.TrustLevel
Default Public ReadOnly Property Item(key As String) As TrustLevel

Parâmetros

key
String

O índice do TrustLevel.

Valor da propriedade

TrustLevel

Um TrustLevel que existe no índice especificado do TrustLevelCollection.

Comentários

Um TrustLevel objeto deve existir no índice especificado dentro do TrustLevelCollection objeto.

Aplica-se a