HttpContext.GetAppConfig Method

NOTE: This method is now obsolete.

Returns requested configuration information for the current application.

Namespace: System.Web
Assembly: System.Web (in system.web.dll)

[ObsoleteAttribute(L"The recommended alternative is System.Web.Configuration.WebConfigurationManager.GetWebApplicationSection in System.Web.dll. http://go.microsoft.com/fwlink/?linkid=14202")] 
public:
static Object^ GetAppConfig (
	String^ name
)
/** @attribute ObsoleteAttribute("The recommended alternative is System.Web.Configuration.WebConfigurationManager.GetWebApplicationSection in System.Web.dll. http://go.microsoft.com/fwlink/?linkid=14202") */ 
public static Object GetAppConfig (
	String name
)
ObsoleteAttribute("The recommended alternative is System.Web.Configuration.WebConfigurationManager.GetWebApplicationSection in System.Web.dll. http://go.microsoft.com/fwlink/?linkid=14202") 
public static function GetAppConfig (
	name : String
) : Object

Parameters

name

The application configuration tag that information is requested for.

Return Value

An object containing configuration information. Cast the returned configuration section to the appropriate configuration type before use.

The GetAppConfig method has been deprecated. Use the GetWebApplicationSection method of the WebConfigurationManager class to get configuration information for the current application.

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

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.

.NET Framework

Supported in: 1.0, 1.1
Obsolete (compiler warning) in 2.0

Community Additions

ADD
Show: