HttpContextExtensions.GetIISServerVariable(HttpContext, String) メソッド

定義

注意事項

This is obsolete and will be removed in a future version. Use GetServerVariable instead.

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

public:
[System::Runtime::CompilerServices::Extension]
 static System::String ^ GetIISServerVariable(Microsoft::AspNetCore::Http::HttpContext ^ context, System::String ^ variableName);
public static string GetIISServerVariable (this Microsoft.AspNetCore.Http.HttpContext context, string variableName);
[System.Obsolete("This is obsolete and will be removed in a future version. Use GetServerVariable instead.")]
public static string GetIISServerVariable (this Microsoft.AspNetCore.Http.HttpContext context, string variableName);
[System.Obsolete("This is obsolete and will be removed in a future version. Use GetServerVariable instead.")]
public static string? GetIISServerVariable (this Microsoft.AspNetCore.Http.HttpContext context, string variableName);
static member GetIISServerVariable : Microsoft.AspNetCore.Http.HttpContext * string -> string
[<System.Obsolete("This is obsolete and will be removed in a future version. Use GetServerVariable instead.")>]
static member GetIISServerVariable : Microsoft.AspNetCore.Http.HttpContext * string -> string
<Extension()>
Public Function GetIISServerVariable (context As HttpContext, variableName As String) As String

パラメーター

context
HttpContext

要求の http コンテキスト。

variableName
String

変数の名前。

戻り値

null サーバーが機能を IServerVariablesFeature サポートしていない場合は 。 変数が存在しないか、設定されていない場合は、null または空を返す場合があります。

属性

注釈

IIS で使用できる一般的なサーバー変数の一覧については、「」を参照してください http://go.microsoft.com/fwlink/?LinkId=52471

適用対象