This documentation is archived and is not being maintained.
ConfigurationSection.SectionInformation Property
Visual Studio 2010
Gets a SectionInformation object that contains the non-customizable information and functionality of the ConfigurationSection object.
Assembly: System.Configuration (in System.Configuration.dll)
Property Value
Type: System.Configuration.SectionInformationA SectionInformation that contains the non-customizable information and functionality of the ConfigurationSection.
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
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Show: