SectionInformation.IsDeclarationRequired プロパティ

定義

構成セクションが構成ファイルで定義される必要があるかどうかを示す値を取得します。

public:
 property bool IsDeclarationRequired { bool get(); };
public bool IsDeclarationRequired { get; }
member this.IsDeclarationRequired : bool
Public ReadOnly Property IsDeclarationRequired As Boolean

プロパティ値

関連付けられている ConfigurationSection オブジェクトが構成ファイルで宣言される必要がある場合は true。それ以外の場合は false

このセクションの例では、構成ファイル内の IsDeclarationRequired 関連セクション情報にアクセスした後でプロパティ値を取得する方法を示します。

次の例では、 オブジェクトを 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

次の例では、 値を取得します IsDeclarationRequired

bool declRequired = 
    sInfo.IsDeclarationRequired;
Console.WriteLine("Declaration required?: {0}",
    declRequired.ToString());
Dim declRequired As Boolean = _
sInfo.IsDeclarationRequired
Console.WriteLine("Declaration required?: {0}", _
declRequired.ToString())

適用対象

こちらもご覧ください