AppSettingsExpressionBuilder.GetAppSetting 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
从 Web.config 文件的 <appSettings>
节返回一个值。
重载
GetAppSetting(String) |
从 Web.config 文件的 |
GetAppSetting(String, Type, String) |
从 Web.config 文件的 |
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 文件的 节中的 <appSettings>
键/值对中检索相应的值。 通过将 键作为索引获取 AppSettings 属性来检索值。 生成的字符串值将基于 targetType
和 propertyName
参数转换为新类型。