TrustLevelCollection.Set(Int32, TrustLevel) Método
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.
Adiciona o objeto TrustLevel especificado ao objeto TrustLevelCollection no índice especificado.
public:
void Set(int index, System::Web::Configuration::TrustLevel ^ trustLevel);
public void Set (int index, System.Web.Configuration.TrustLevel trustLevel);
member this.Set : int * System.Web.Configuration.TrustLevel -> unit
Public Sub Set (index As Integer, trustLevel As TrustLevel)
Parâmetros
- index
- Int32
A posição do índice de TrustLevel a ser definido em TrustLevelCollection.
- trustLevel
- TrustLevel
O TrustLevel a ser definido dentro de TrustLevelCollection.
Exemplos
O exemplo de código a seguir demonstra como usar o Set método . Este exemplo de código faz parte de um exemplo maior fornecido para a TrustLevelCollection classe .
// Set the TrustLevel object within the collection.
TrustLevelCollection1.Set(1, TrustLevel2);
' Set the TrustLevel object within the collection.
TrustLevelCollection1.Set(1, TrustLevel2)