Compartilhar via


SectionInformation.IsProtected Propriedade

Definição

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

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

Valor da propriedade

true se isso ConfigurationSection estiver protegido; caso contrário, false. O padrão é false.

Exemplos

Os exemplos nesta seção mostram como obter o valor da IsProtected propriedade depois de acessar as informações de 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 IsProtected valor .

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

Comentários

As seções de configuração protegidas são criptografadas e somente leitura.

Para obter mais informações sobre seções de configuração protegida, consulte Criptografando informações de configuração usando a configuração protegida.

Aplica-se a

Confira também