HttpContextServerVariableExtensions.GetServerVariable メソッド

定義

現在の要求のサーバー変数の値を取得します。

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 または空を返す場合があります。

適用対象