HttpContext.GetConfig Method
.NET Framework 3.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
Not applicable.
Parameters
- name
The configuration tag for which information is requested.
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.
Community Additions
ADD
Show: