HttpContextExtensions.GetIISServerVariable(HttpContext, String) 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
주의
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 또는 empty를 반환할 수 있습니다.
- 특성
설명
IIS에서 사용할 수 있는 일반적인 서버 변수 목록은 을 참조하세요 http://go.microsoft.com/fwlink/?LinkId=52471.