SectionInformation.IsLocked プロパティ

定義

関連付けられている構成セクションがロックされているかどうかを示す値を取得します。

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

プロパティ値

セクションがロックされている場合は true。それ以外の場合は false

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

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

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

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

注釈

プロパティは IsLockedtrue または プロパティによって AllowOverride 関連セクションがロックされている場合に を AllowDefinition 返します。 セクションが現在の構成ファイルでオーバーライドまたは定義できない場合、セクションはロックされます。

適用対象