ElementInformation.IsLocked 속성

정의

연결된 ConfigurationElement 개체를 수정할 수 없는지 여부를 나타내는 값을 가져옵니다.

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

속성 값

연결된 ConfigurationElement 개체를 수정할 수 없으면 true이고, 그렇지 않으면 false입니다.

예제

다음 예제에서는 IsLocked 속성을 사용하는 방법을 보여 줍니다.

static public void IsElementLocked()
{
    // Get the current configuration file.
    System.Configuration.Configuration config =
            ConfigurationManager.OpenExeConfiguration(
            ConfigurationUserLevel.None);
    
    // Get the section.
    UrlsSection section =
        (UrlsSection)config.GetSection("MyUrls");

    // Get the element.
    UrlConfigElement url = section.Simple;

    bool isLocked =
        url.ElementInformation.IsLocked;
    Console.WriteLine("Url element is locked? {0}",
        isLocked.ToString());
}
Public Shared Sub IsElementLocked() 

    ' 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)
    
    ' Get the element.
    Dim url As UrlConfigElement = _
    section.Simple
    
    Dim isLocked As Boolean = _
    url.ElementInformation.IsLocked
    Console.WriteLine("Url element is locked? {0}", _
    isLocked.ToString())

End Sub

설명

속성은 IsLocked 관련 요소가 , AllowDefinition또는 LockAllAttributesExcept 속성에 의해 잠겨 있을 AllowOverride때 를 반환 true 합니다.

적용 대상