SectionInformation.IsDeclared プロパティ

定義

関連付けられている構成セクションが構成ファイルで定義されているかどうかを示す値を取得します。

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

プロパティ値

この ConfigurationSection が構成ファイルで定義されている場合は true。それ以外の場合は false。 既定値は、true です。

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

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

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

bool declared =
    sInfo.IsDeclared;
Console.WriteLine("Section declared?: {0}",
    declared.ToString());
Dim declared As Boolean = _
sInfo.IsDeclared
Console.WriteLine("Section declared?: {0}", _
declared.ToString())

適用対象