TrustLevel.PolicyFile プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
名前付きセキュリティ レベルのセキュリティ ポリシー設定が格納されている構成ファイル参照を取得または設定します。
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
プロパティ値
関連付けられているセキュリティ レベルのセキュリティ ポリシー設定が格納される構成ファイル参照。
- 属性
例
次のコード例は、プロパティの使用方法を 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)