ConfigurationSection.SectionInformation 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
사용자가 지정할 수 없는 SectionInformation 개체의 정보와 기능을 포함하는 ConfigurationSection 개체를 가져옵니다.
public:
property System::Configuration::SectionInformation ^ SectionInformation { System::Configuration::SectionInformation ^ get(); };
public System.Configuration.SectionInformation SectionInformation { get; }
member this.SectionInformation : System.Configuration.SectionInformation
Public ReadOnly Property SectionInformation As SectionInformation
속성 값
사용자가 지정할 수 없는 SectionInformation 정보와 기능을 포함하는 ConfigurationSection입니다.
예제
다음 예제에서는 SectionInformation 속성을 사용하는 방법을 보여 줍니다.
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());
}
}
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
적용 대상
추가 정보
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET