次の方法で共有


TrustLevel.Name プロパティ

定義

ポリシー ファイルに割り当てられる名前付きセキュリティ レベルを取得または設定します。

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

プロパティ値

String

ポリシー ファイルに割り当てられる Name

属性

次のコード例は、プロパティの使用方法を Name 示しています。 このコード例は、TrustLevel クラスのために提供されている大規模な例の一部です。

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

適用対象

こちらもご覧ください