Note

Access to this page requires authorization. You can try signing in or .

Access to this page requires authorization. You can try .

SectionInformation.IsProtected Property

Definition

Namespace:
System.Configuration
Assembly:
System.Configuration.ConfigurationManager.dll
Assembly:
System.Configuration.dll
Package:
System.Configuration.ConfigurationManager v11.0.0-preview.5.26302.115
Source:
SectionInformation.cs
Source:
SectionInformation.cs
Source:
SectionInformation.cs
Source:
SectionInformation.cs
Source:
SectionInformation.cs
Source:
SectionInformation.cs
Source:
SectionInformation.cs
Source:
SectionInformation.cs
Source:
SectionInformation.cs

Important

Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.

Gets a value that indicates whether the associated configuration section is protected.

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

Property Value

true if this ConfigurationSection is protected; otherwise, false. The default is false.

Examples

The examples in this section show how to get the IsProtected property value after accessing the related section information in the configuration file.

The following example gets the SectionInformation object.

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

The following example gets the IsProtected value.

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

Remarks

Protected configuration sections are encrypted and read-only.

For more information about protected configuration sections, see Encrypting Configuration Information Using Protected Configuration.

Applies to

See also


Feedback

Was this page helpful?