次の方法で共有


TrustSection.Level プロパティ

定義

アプリケーションが実行されるセキュリティ レベルの名前を取得または設定します。

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

プロパティ値

String

信頼レベルの名前。 既定値は、"Full" です。

属性

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

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

注釈

このプロパティは Level 、アプリケーションを実行するセキュリティ レベルを指定します。 既定値は、"Full" です。

使用可能な信頼レベルは 5 つあります。

  • [完全]

  • Medium

  • Minimal

名前付きレベルは、要素で定義されているセキュリティ レベルに <trustLevel> 対応します <securityPolicy>

適用対象

こちらもご覧ください