HttpContextExtensions.GetIISServerVariable(HttpContext, String) Methode

Definition

Achtung

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

Ruft den Wert einer Servervariablen für die aktuelle Anforderung ab.

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

Parameter

context
HttpContext

Der HTTP-Kontext für die Anforderung.

variableName
String

Der Name der Variablen.

Gibt zurück

null , wenn der Server das IServerVariablesFeature Feature nicht unterstützt. Kann NULL oder leer zurückgeben, wenn die Variable nicht vorhanden oder nicht festgelegt ist.

Attribute

Hinweise

Eine Liste der allgemeinen Servervariablen, die in IIS verfügbar sind, finden Sie unter http://go.microsoft.com/fwlink/?LinkId=52471.

Gilt für: