UriHelper.FromAbsolute 메서드

정의

지정된 절대 URI 문자열을 구성 요소로 구분합니다. PathBase가 없다고 가정합니다.

public:
 static void FromAbsolute(System::String ^ uri, [Runtime::InteropServices::Out] System::String ^ % scheme, [Runtime::InteropServices::Out] Microsoft::AspNetCore::Http::HostString % host, [Runtime::InteropServices::Out] Microsoft::AspNetCore::Http::PathString % path, [Runtime::InteropServices::Out] Microsoft::AspNetCore::Http::QueryString % query, [Runtime::InteropServices::Out] Microsoft::AspNetCore::Http::FragmentString % fragment);
public static void FromAbsolute (string uri, out string scheme, out Microsoft.AspNetCore.Http.HostString host, out Microsoft.AspNetCore.Http.PathString path, out Microsoft.AspNetCore.Http.QueryString query, out Microsoft.AspNetCore.Http.FragmentString fragment);
static member FromAbsolute : string * string * HostString * PathString * QueryString * FragmentString -> unit
Public Sub FromAbsolute (uri As String, ByRef scheme As String, ByRef host As HostString, ByRef path As PathString, ByRef query As QueryString, ByRef fragment As FragmentString)

매개 변수

uri
String

URI의 문자열 표현입니다.

scheme
String

http, https 등

host
HostString

일반적으로 호스트 헤더에 포함된 URI의 호스트 부분입니다. 여기에는 포트가 포함될 수 있습니다.

path
PathString

요청된 리소스를 식별하는 요청 경로의 부분입니다.

query
QueryString

쿼리(있는 경우)입니다.

fragment
FragmentString

조각(있는 경우)입니다.

적용 대상