Sdílet prostřednictvím


UriHelper.FromAbsolute Metoda

Definice

Rozdělí daný absolutní řetězec identifikátoru URI na komponenty. Nepředpokládá žádný 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)

Parametry

uri
String

Řetězcová reprezentace identifikátoru URI.

scheme
String

http, https atd.

host
HostString

Část identifikátoru URI hostitele, která je obvykle zahrnuta v hlavičce hostitele. To může zahrnovat port.

path
PathString

Část cesty požadavku, která identifikuje požadovaný prostředek.

query
QueryString

Dotaz, pokud existuje.

fragment
FragmentString

Fragment, pokud existuje.

Platí pro