ElementInformation.IsLocked Eigenschaft

Definition

Ruft einen Wert ab, der angibt, ob das zugeordnete ConfigurationElement-Objekt nicht geändert werden kann.

public bool IsLocked { get; }

Eigenschaftswert

true, wenn das zugeordnete ConfigurationElement-Objekt nicht geändert werden darf, andernfalls false.

Beispiele

Im folgenden Beispiel wird die Verwendung der IsLocked-Eigenschaft veranschaulicht.

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

Hinweise

Die IsLocked -Eigenschaft gibt zurück true , wenn das zugehörige Element durch die AllowOverride- oder AllowDefinition- LockAllAttributesExcept oder -Eigenschaft gesperrt ist.

Gilt für: