Compartilhar via


TrustLevelCollection.Add(TrustLevel) Método

Definição

Adiciona um objeto de TrustLevel à coleção.

public:
 void Add(System::Web::Configuration::TrustLevel ^ trustLevel);
public void Add (System.Web.Configuration.TrustLevel trustLevel);
member this.Add : System.Web.Configuration.TrustLevel -> unit
Public Sub Add (trustLevel As TrustLevel)

Parâmetros

trustLevel
TrustLevel

O TrustLevel a adicionar à coleção.

Exemplos

O exemplo de código a seguir demonstra como usar o Add método . Este exemplo de código faz parte de um exemplo maior fornecido para a TrustLevelCollection classe .

// Add a new TrustLevel to the collection.
TrustLevelCollection1.Add(new TrustLevel("Level1", "Level1.config"));
' Add a new TrustLevel to the collection.
TrustLevelCollection1.Add(New TrustLevel("Level1", "Level1.config"))

Aplica-se a