HttpContextServerVariableExtensions.GetServerVariable メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
現在の要求のサーバー変数の値を取得します。
public:
[System::Runtime::CompilerServices::Extension]
static System::String ^ GetServerVariable(Microsoft::AspNetCore::Http::HttpContext ^ context, System::String ^ variableName);
public static string GetServerVariable (this Microsoft.AspNetCore.Http.HttpContext context, string variableName);
public static string? GetServerVariable (this Microsoft.AspNetCore.Http.HttpContext context, string variableName);
static member GetServerVariable : Microsoft.AspNetCore.Http.HttpContext * string -> string
<Extension()>
Public Function GetServerVariable (context As HttpContext, variableName As String) As String
パラメーター
- context
- HttpContext
要求の http コンテキスト。
- variableName
- String
変数の名前。
戻り値
null
サーバーが機能を IServerVariablesFeature サポートしていない場合は 。
変数が存在しないか、設定されていない場合は、null または空を返す場合があります。