HttpContext.GetAppConfig(String) 方法

定义

注意

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

为当前应用程序返回请求的配置信息。

public:
 static System::Object ^ GetAppConfig(System::String ^ name);
public static object GetAppConfig (string name);
[System.Obsolete("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);
static member GetAppConfig : string -> obj
[<System.Obsolete("The recommended alternative is System.Web.Configuration.WebConfigurationManager.GetWebApplicationSection in System.Web.dll. http://go.microsoft.com/fwlink/?linkid=14202")>]
static member GetAppConfig : string -> obj
Public Shared Function GetAppConfig (name As String) As Object

参数

name
String

为其请求信息的应用程序配置标记。

返回

包含配置信息的对象。 (在使用之前,将返回的配置节强制转换为适当的配置类型。)

属性

注解

GetAppConfig 方法已弃用。 GetWebApplicationSection使用 类的 WebConfigurationManager 方法来获取当前应用程序的配置信息。

适用于

另请参阅