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
プロパティ値
構成ファイル階層内の、関連付けられている ConfigurationSection オブジェクトを .exe ファイルに対して宣言できる位置を示す値。
例外
選択した値が定義済みの値と競合します。
例
このセクションの例では、構成ファイル内の 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する必要があります。
適用対象
こちらもご覧ください
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET