Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

HttpContext::GetConfig Method (String^)

 
Note: This API is now obsolete.

Returns requested configuration information for the current HTTP request.

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

public:
[ObsoleteAttribute("The recommended alternative is System.Web.HttpContext.GetSection in System.Web.dll. http://go.microsoft.com/fwlink/?linkid=14202")]
Object^ GetConfig(
	String^ name
)

Parameters

name
Type: System::String^

The configuration tag for which information is requested.

Return Value

Type: System::Object^

The specified ConfigurationSection, null 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.

.NET Framework
Available since 1.1
Return to top
Show:
© 2017 Microsoft