Compartilhar via


SectionInformation.IsLocked Propriedade

Definição

Obtém um valor que indica se a seção de configuração associada está bloqueada.

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

Valor da propriedade

true se a seção estiver bloqueada; caso contrário, false.

Exemplos

Os exemplos nesta seção mostram como obter o valor da IsLocked propriedade depois de acessar as informações da seção relacionadas no arquivo de configuração.

O exemplo a seguir obtém o SectionInformation objeto .

// 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

O exemplo a seguir obtém o IsLocked valor .

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

Comentários

A IsLocked propriedade retorna true quando a seção relacionada é bloqueada pela AllowOverride propriedade ou AllowDefinition . Uma seção será bloqueada se não puder ser substituída ou definida no arquivo de configuração atual.

Aplica-se a