다음을 통해 공유


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())

설명

속성은 IsLocked 관련 섹션이 또는 속성에 의해 AllowOverride 잠겨 있을 때 를 반환 true 합니다AllowDefinition. 섹션을 재정의하거나 현재 구성 파일에서 정의할 수 없는 경우 잠깁니다.

적용 대상