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 にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET