UriHelper.FromAbsolute Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Sépare la chaîne d’URI absolue donnée en composants. Suppose qu’il n’y a pas de 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)
Paramètres
- uri
- String
Représentation sous forme de chaîne de l’URI.
- scheme
- String
http, https, etc.
- host
- HostString
Partie hôte de l’URI normalement incluse dans l’en-tête Hôte. Cela peut inclure le port.
- path
- PathString
Partie du chemin d’accès de la requête qui identifie la ressource demandée.
- query
- QueryString
La requête, le cas échéant.
- fragment
- FragmentString
Fragment, le cas échéant.