SectionInformation.AllowExeDefinition 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得或設定值,指出可以在組態檔階層架構中的哪一個位置宣告關聯的組態區段。
public:
property System::Configuration::ConfigurationAllowExeDefinition AllowExeDefinition { System::Configuration::ConfigurationAllowExeDefinition get(); void set(System::Configuration::ConfigurationAllowExeDefinition value); };
public System.Configuration.ConfigurationAllowExeDefinition AllowExeDefinition { get; set; }
member this.AllowExeDefinition : System.Configuration.ConfigurationAllowExeDefinition with get, set
Public Property AllowExeDefinition As ConfigurationAllowExeDefinition
屬性值
值,指出可以在組態檔階層架構中的哪一個位置為 .exe 檔案宣告關聯的 ConfigurationSection 物件。
例外狀況
選取的值與已定義的值發生衝突。
範例
本節中的範例示範如何在存取組態檔中的相關區段信息之後取得 AllowExeDefinition 屬性值。
下列範例會 SectionInformation 取得物件。
// Get the current configuration file.
System.Configuration.Configuration config =
ConfigurationManager.OpenExeConfiguration(
ConfigurationUserLevel.None);
// Get the section.
UrlsSection section =
(UrlsSection)config.GetSection("MyUrls");
SectionInformation sInfo =
section.SectionInformation;
' Get the current configuration file.
Dim config _
As System.Configuration.Configuration = _
ConfigurationManager.OpenExeConfiguration( _
ConfigurationUserLevel.None)
' Get the section.
Dim section As UrlsSection = _
CType(config.GetSection("MyUrls"), UrlsSection)
Dim sInfo As SectionInformation = _
section.SectionInformation
下列範例會取得 AllowExeDefinition 值。
ConfigurationAllowExeDefinition allowExeDefinition =
sInfo.AllowExeDefinition;
Console.WriteLine("Allow exe definition: {0}",
allowExeDefinition.ToString());
Dim allowExeDefinition _
As ConfigurationAllowExeDefinition = _
sInfo.AllowExeDefinition
Console.WriteLine("Allow exe definition: {0}", _
allowExeDefinition.ToString())
備註
AllowExeDefinition 僅適用於用戶端應用程式的組態檔。 針對 Web 應用程式,您必須使用 AllowDefinition。