ConfigurationSectionGroup.IsDeclarationRequired 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得值,指出是否需要這個 ConfigurationSectionGroup 物件宣告。
public:
property bool IsDeclarationRequired { bool get(); };
public bool IsDeclarationRequired { get; }
member this.IsDeclarationRequired : bool
Public ReadOnly Property IsDeclarationRequired As Boolean
屬性值
如果需要這個 ConfigurationSectionGroup 宣告,則為 true
,否則為 false
。
範例
下列程式代碼範例會判斷是否需要此宣告實例 ConfigurationSectionGroup 。
indent("Is Group Required?: " +
sectionGroup.IsDeclarationRequired);
indent("Is Group Required?: " + _
sectionGroup.IsDeclarationRequired.ToString())