HttpContextExtensions.GetIISServerVariable(HttpContext, String) Método
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Cuidado
This is obsolete and will be removed in a future version. Use GetServerVariable instead.
Obtém o valor de uma variável de servidor para a solicitação atual.
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
Parâmetros
- context
- HttpContext
O contexto http para a solicitação.
- variableName
- String
O nome da variável.
Retornos
null
se o servidor não der suporte ao IServerVariablesFeature recurso.
Pode retornar nulo ou vazio se a variável não existir ou não estiver definida.
- Atributos
Comentários
Para obter uma lista de variáveis de servidor comuns disponíveis no IIS, consulte http://go.microsoft.com/fwlink/?LinkId=52471.