共用方式為


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"

有五個可用的信任層級:

  • 完整

  • 基本

具名層級會對應至 的 元素 <securityPolicy><trustLevel> 定義的安全性層級。

適用於

另請參閱