ConfigurationSection.SectionInformation プロパティ
アセンブリ: System.Configuration (system.configuration.dll 内)

Dim instance As ConfigurationSection Dim value As SectionInformation value = instance.SectionInformation
ConfigurationSection オブジェクトのカスタマイズできない情報と機能を格納する SectionInformation オブジェクト。

SectionInformation を使用する方法の例を次に示します。
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()); } }

Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


Weblioに収録されているすべての辞書からConfigurationSection.SectionInformation プロパティを検索する場合は、下記のリンクをクリックしてください。

- ConfigurationSection.SectionInformation プロパティのページへのリンク