HttpContext.GetConfig Method
.NET Framework 2.0
NOTE: This method is now obsolete.
Returns requested configuration information for the current HTTP request. Namespace: System.WebAssembly: System.Web (in system.web.dll)
[ObsoleteAttribute(L"The recommended alternative is System.Web.HttpContext.GetSection in System.Web.dll. http://go.microsoft.com/fwlink/?linkid=14202")] public: Object^ GetConfig ( String^ name )
/** @attribute ObsoleteAttribute("The recommended alternative is System.Web.HttpContext.GetSection in System.Web.dll. http://go.microsoft.com/fwlink/?linkid=14202") */
public Object GetConfig (
String name
)
ObsoleteAttribute("The recommended alternative is System.Web.HttpContext.GetSection in System.Web.dll. http://go.microsoft.com/fwlink/?linkid=14202") public function GetConfig ( name : String ) : Object
Parameters
- name
The configuration tag that information is requested for.
Return Value
The specified ConfigurationSection, a null reference (Nothing in Visual Basic) if the section does not exist, or an internal object if the section is not accessible at run time. Cast the returned object to the appropriate configuration type before use.The GetConfig method has been deprecated. Use the GetSection method to get configuration information for the current HTTP request.
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.
Community Additions
ADD
Show: