AppSettingsExpressionBuilder.GetAppSetting 方法

定义

从 Web.config 文件的 <appSettings> 节返回一个值。

重载

GetAppSetting(String)

从 Web.config 文件的 <appSettings> 节返回一个值。

GetAppSetting(String, Type, String)

从 Web.config 文件的 <appSettings> 节返回一个值,该值已转换为目标类型。

GetAppSetting(String)

从 Web.config 文件的 <appSettings> 节返回一个值。

public:
 static System::Object ^ GetAppSetting(System::String ^ key);
public static object GetAppSetting (string key);
static member GetAppSetting : string -> obj
Public Shared Function GetAppSetting (key As String) As Object

参数

key
String

要从配置文件中检索的值的键。

返回

与 Web.config 文件的 <appSettings> 节中的键关联的 Object

例外

在 Web.config 中未找到该键。

注解

此方法从 Web.config 文件的 节中的 <appSettings> 键/值对中检索相应的值。 它通过将 键作为索引获取 AppSettings 属性来检索值。 Object返回的 的类型为 String

另请参阅

适用于

GetAppSetting(String, Type, String)

从 Web.config 文件的 <appSettings> 节返回一个值,该值已转换为目标类型。

public:
 static System::Object ^ GetAppSetting(System::String ^ key, Type ^ targetType, System::String ^ propertyName);
public static object GetAppSetting (string key, Type targetType, string propertyName);
static member GetAppSetting : string * Type * string -> obj
Public Shared Function GetAppSetting (key As String, targetType As Type, propertyName As String) As Object

参数

key
String

要从配置文件中检索的值的键。

targetType
Type

包含属性项的对象的类型。

propertyName
String

表达式绑定到的属性的名称。

返回

与 Web.config 文件的 <appSettings> 节中的键关联的 Object

例外

在 Web.config 中未找到该键。

- 或 -

未能转换返回值。

注解

此方法从 Web.config 文件的 节中的 <appSettings> 键/值对中检索相应的值。 通过将 键作为索引获取 AppSettings 属性来检索值。 生成的字符串值将基于 targetTypepropertyName 参数转换为新类型。

另请参阅

适用于