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.

Применяется к