Partager via


TrustLevel.Name Propriété

Définition

Obtient ou définit un niveau de sécurité nommé qui est mappé à un fichier de stratégie.

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

Valeur de propriété

String

Name qui est mappé à un fichier de stratégie.

Attributs

Exemples

L’exemple de code suivant montre comment utiliser la Name propriété. Cet exemple de code fait partie d’un exemple plus grand fourni pour la TrustLevel classe.

// 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)

S’applique à

Voir aussi