Compartir a través de


TrustLevel.Name Propiedad

Definición

Obtiene o establece un nivel de seguridad con nombre que está asignado a un archivo de directivas.

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

Valor de propiedad

String

Name asignado a un archivo de directivas.

Atributos

Ejemplos

En el ejemplo de código siguiente se muestra cómo usar la Name propiedad . Este ejemplo de código forma parte de un ejemplo más grande proporcionado para la TrustLevel clase .

// Get the Name of the TrustLevel object.
Console.WriteLine("Name: {0}", TrustLevel1.Name);
' Get the Name of the TrustLevel object.
Console.WriteLine("Name: {0}", TrustLevel1.Name)

Se aplica a

Consulte también