Compartilhar via


TrustSection.Level Propriedade

Definição

Obtém ou define o nome do nível de segurança em que o aplicativo será executado.

public:
 property System::String ^ Level { System::String ^ get(); void set(System::String ^ value); };
[System.Configuration.ConfigurationProperty("level", DefaultValue="Full", IsRequired=true)]
[System.Configuration.StringValidator(MinLength=1)]
public string Level { get; set; }
[<System.Configuration.ConfigurationProperty("level", DefaultValue="Full", IsRequired=true)>]
[<System.Configuration.StringValidator(MinLength=1)>]
member this.Level : string with get, set
Public Property Level As String

Valor da propriedade

String

O nome do nível de confiança. O padrão é "Full".

Atributos

Exemplos

O exemplo de código a seguir demonstra como usar a Level propriedade. Este exemplo de código faz parte de um exemplo maior fornecido para a TrustSection classe.

// Display Level property
Console.WriteLine("Level: {0}", configSection.Level);
' Display Level property.
Console.WriteLine("Level: {0}", configSection.Level)

Comentários

A Level propriedade especifica o nível de segurança sob o qual o aplicativo será executado. O padrão é "Full".

Há cinco níveis de confiança disponíveis:

  • Completo

  • Alto

  • Médio

  • Baixo

  • Minimal

Os níveis nomeados correspondem aos níveis de segurança definidos no <trustLevel> elemento para <securityPolicy>.

Aplica-se a

Confira também