TrustLevel.PolicyFile 属性

定义

获取或设置包含指定安全级别的安全策略设置的配置文件引用。

public:
 property System::String ^ PolicyFile { System::String ^ get(); void set(System::String ^ value); };
[System.Configuration.ConfigurationProperty("policyFile", DefaultValue="internal", IsRequired=true)]
public string PolicyFile { get; set; }
[<System.Configuration.ConfigurationProperty("policyFile", DefaultValue="internal", IsRequired=true)>]
member this.PolicyFile : string with get, set
Public Property PolicyFile As String

属性值

String

包含关联安全级别的安全策略设置的配置文件引用。

属性

示例

下面的代码示例演示如何使用 PolicyFile 该属性。 此代码示例是为类提供的大型示例的 TrustLevel 一部分。

// Get the PolicyFile of the TrustLevel object.
Console.WriteLine("PolicyFile: {0}", TrustLevel2.PolicyFile);
' Get the PolicyFile of the TrustLevel object.
Console.WriteLine("PolicyFile: {0}", TrustLevel2.PolicyFile)

适用于

另请参阅