HttpContextServerVariableExtensions.GetServerVariable 方法

定义

获取当前请求的服务器变量的值。

public:
[System::Runtime::CompilerServices::Extension]
 static System::String ^ GetServerVariable(Microsoft::AspNetCore::Http::HttpContext ^ context, System::String ^ variableName);
public static string GetServerVariable (this Microsoft.AspNetCore.Http.HttpContext context, string variableName);
public static string? GetServerVariable (this Microsoft.AspNetCore.Http.HttpContext context, string variableName);
static member GetServerVariable : Microsoft.AspNetCore.Http.HttpContext * string -> string
<Extension()>
Public Function GetServerVariable (context As HttpContext, variableName As String) As String

参数

context
HttpContext

请求的 http 上下文。

variableName
String

变量的名称。

返回

null 如果服务器不支持该功能,则 IServerVariablesFeature 为 。 如果变量不存在或未设置,则可能会返回 null 或空。

适用于