HttpContextExtensions.GetIISServerVariable(HttpContext, String) Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Attention
This is obsolete and will be removed in a future version. Use GetServerVariable instead.
Obtient la valeur d’une variable serveur pour la requête actuelle.
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
Paramètres
- context
- HttpContext
Contexte http de la requête.
- variableName
- String
Nom de la variable.
Retours
null
si le serveur ne prend pas en charge la IServerVariablesFeature fonctionnalité.
Peut retourner null ou vide si la variable n’existe pas ou n’est pas définie.
- Attributs
Remarques
Pour obtenir la liste des variables serveur courantes disponibles dans IIS, consultez http://go.microsoft.com/fwlink/?LinkId=52471.