WebConfigurationManager.AppSettings プロパティ
アセンブリ: System.Web (system.web.dll 内)

現在の Web アプリケーションの既定の構成の AppSettingsSection オブジェクトを格納している NameValueCollection オブジェクト。



AppSettings メソッドを使用して構成情報にアクセスする方法を次のコード例に示します。
' Show the use of AppSettings. ' It gets the section from the configuration ' file located at the application current level. Shared Sub GetAppSettings() ' Get the appSettings key,value pairs collection. Dim appSettings As NameValueCollection = _ WebConfigurationManager.AppSettings ' Get the collection enumerator. Dim appSettingsEnum As IEnumerator = _ appSettings.GetEnumerator() ' Loop through the collection and ' display the appSettings key, value pairs. Dim i As Integer = 0 Console.WriteLine("[Display appSettings]") While appSettingsEnum.MoveNext() Dim key As String = appSettings.AllKeys(i) Console.WriteLine("Key: {0} Value: {1}", _ key, appSettings(key)) i += 1 End While Console.WriteLine() End Sub 'GetAppSettings
// Show the use of AppSettings. // It gets the section from the configuration // file located at the application current level. static void GetAppSettings() { // Get the appSettings key,value pairs collection. NameValueCollection appSettings = WebConfigurationManager.AppSettings as NameValueCollection; // Get the collection enumerator. IEnumerator appSettingsEnum = appSettings.GetEnumerator(); // Loop through the collection and // display the appSettings key, value pairs. int i = 0; Console.WriteLine("[Display appSettings]"); while (appSettingsEnum.MoveNext()) { string key = appSettings.AllKeys[i].ToString(); Console.WriteLine("Key: {0} Value: {1}", key, appSettings[key]); i += 1; } Console.WriteLine(); }

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 によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


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

- WebConfigurationManager.AppSettings プロパティのページへのリンク