HttpContext.GetConfig(String) 方法

定义

注意

The recommended alternative is System.Web.HttpContext.GetSection in System.Web.dll. http://go.microsoft.com/fwlink/?linkid=14202

为当前 HTTP 请求返回所请求的配置信息。

public:
 System::Object ^ GetConfig(System::String ^ name);
public object GetConfig (string name);
[System.Obsolete("The recommended alternative is System.Web.HttpContext.GetSection in System.Web.dll. http://go.microsoft.com/fwlink/?linkid=14202")]
public object GetConfig (string name);
member this.GetConfig : string -> obj
[<System.Obsolete("The recommended alternative is System.Web.HttpContext.GetSection in System.Web.dll. http://go.microsoft.com/fwlink/?linkid=14202")>]
member this.GetConfig : string -> obj
Public Function GetConfig (name As String) As Object

参数

name
String

为其请求信息的配置标记。

返回

Object

指定的 ConfigurationSection,如果该节不存在,则为 null,或是如果该节不能在运行时访问,则为一个内部对象。 (在使用之前,将返回的对象强制转换为适当的配置类型。)

属性

注解

GetConfig 方法已弃用。 使用此方法 GetSection 获取当前 HTTP 请求的配置信息。

适用于

另请参阅