SystemWebSectionGroup クラス
アセンブリ: System.Web (system.web.dll 内)



既存の Web アプリケーションに関連付けられている構成ファイルから SystemWebSectionGroup オブジェクトを取得する方法を次のコード例に示します。このオブジェクトを使用して、system.web グループに格納されているセクションにアクセスできます。
' Get the Web application configuration. Dim configuration As System.Configuration.Configuration = _ WebConfigurationManager.OpenWebConfiguration( _ "/aspnetTest") ' Get the <system.web> group. Dim systemWeb As SystemWebSectionGroup = _ CType(configuration.GetSectionGroup( _ "system.web"), SystemWebSectionGroup)
// Get the Web application configuration. System.Configuration.Configuration configuration = WebConfigurationManager.OpenWebConfiguration( "/aspnetTest"); // Get the <system.web> group. SystemWebSectionGroup systemWeb = (SystemWebSectionGroup)configuration.GetSectionGroup("system.web");

System.Configuration.ConfigurationSectionGroup
System.Web.Configuration.SystemWebSectionGroup


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


- SystemWebSectionGroup クラスのページへのリンク