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 取得することによって取得されます。 結果の文字列値は、 パラメーターと propertyName
パラメーターに基づいて新しい型にtargetType
変換されます。
こちらもご覧ください
適用対象
.NET