Gets a SectionInformation object that contains the non-customizable information and functionality of the ConfigurationSection object.
Assembly: System.Configuration (in System.Configuration.dll)
Syntax
A SectionInformation that contains the non-customizable information and functionality of the ConfigurationSection.
Public ReadOnly Property SectionInformation As [%$TOPIC/ms134300_en-us_VS_110_3_0_0_0_0%]
public [%$TOPIC/ms134300_en-us_VS_110_3_0_1_0_0%] SectionInformation { get; }
public:
property [%$TOPIC/ms134300_en-us_VS_110_3_0_2_0_0%]^ SectionInformation {
[%$TOPIC/ms134300_en-us_VS_110_3_0_2_0_1%]^ get ();
}
member SectionInformation : [%$TOPIC/ms134300_en-us_VS_110_3_0_3_0_0%] with get
Property Value
Type: System.ConfigurationSectionInformationA SectionInformation that contains the non-customizable information and functionality of the ConfigurationSection.
Examples
The following example shows how to use the SectionInformation property.
Shared Sub DisplayCustomSectionInformation()
Try
Dim customSection As CustomSection
customSection = ConfigurationManager.GetSection("CustomSection")
If customSection Is Nothing Then
Console.WriteLine(("Failed to load " + "CustomSection" + "."))
Else
' Display specific information
Console.WriteLine("Defaults:")
Console.WriteLine("File Name: {0}", customSection.FileName)
Console.WriteLine("Max Users: {0}", customSection.MaxUsers.ToString())
Console.WriteLine("Max Idle Time: {0}", customSection.MaxIdleTime.ToString())
' Display generic information
Console.WriteLine("Generic information:")
Console.WriteLine("AllowExeDefinition: {0}", customSection.SectionInformation.AllowExeDefinition.ToString())
Console.WriteLine("IsLocked: {0}", customSection.SectionInformation.IsLocked.ToString())
End If
Catch err As ConfigurationErrorsException
Console.WriteLine(err.ToString())
End Try
End Sub 'DisplayCustomSectionInformation
static void DisplayCustomSectionInformation()
{
try
{
CustomSection customSection;
customSection =
ConfigurationManager.GetSection("CustomSection") as CustomSection;
if (customSection == null)
Console.WriteLine("Failed to load " + "CustomSection" + ".");
else
{
// Display specific information
Console.WriteLine("Defaults:");
Console.WriteLine("File Name: {0}", customSection.FileName);
Console.WriteLine("Max Users: {0}", customSection.MaxUsers);
Console.WriteLine("Max Idle Time: {0}", customSection.MaxIdleTime);
// Display generic information
Console.WriteLine("Generic information:");
Console.WriteLine("AllowExeDefinition: {0}",
customSection.SectionInformation.AllowExeDefinition.ToString());
Console.WriteLine("IsLocked: {0}",
customSection.SectionInformation.IsLocked.ToString());
}
}
catch (ConfigurationErrorsException err)
{
Console.WriteLine(err.ToString());
}
}
Platforms
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.