HttpContext.GetAppConfig Method
.NET Framework 3.0
NOTE: This method is now obsolete.
Returns requested configuration information for the current application. Namespace: System.WebAssembly: 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
Not applicable.
Parameters
- name
The application configuration tag for which information is requested.
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.
Community Additions
ADD
Show: