共用方式為


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 參數轉換成新的類型。

另請參閱

適用於