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>定义的安全级别。

适用于

另请参阅