QueryString.FromUriComponent Method

Definition

Overloads

FromUriComponent(Uri)

Returns an QueryString given the query as from a Uri object. Relative Uri objects are not supported.

FromUriComponent(String)

Returns an QueryString given the query as it is escaped in the URI format. The string MUST NOT contain any value that is not a query.

FromUriComponent(Uri)

Source:
QueryString.cs
Source:
QueryString.cs

Returns an QueryString given the query as from a Uri object. Relative Uri objects are not supported.

public:
 static Microsoft::AspNetCore::Http::QueryString FromUriComponent(Uri ^ uri);
public static Microsoft.AspNetCore.Http.QueryString FromUriComponent (Uri uri);
static member FromUriComponent : Uri -> Microsoft.AspNetCore.Http.QueryString
Public Shared Function FromUriComponent (uri As Uri) As QueryString

Parameters

uri
Uri

The Uri object

Returns

The resulting QueryString

Applies to

FromUriComponent(String)

Source:
QueryString.cs
Source:
QueryString.cs

Returns an QueryString given the query as it is escaped in the URI format. The string MUST NOT contain any value that is not a query.

public:
 static Microsoft::AspNetCore::Http::QueryString FromUriComponent(System::String ^ uriComponent);
public static Microsoft.AspNetCore.Http.QueryString FromUriComponent (string uriComponent);
static member FromUriComponent : string -> Microsoft.AspNetCore.Http.QueryString
Public Shared Function FromUriComponent (uriComponent As String) As QueryString

Parameters

uriComponent
String

The escaped query as it appears in the URI format.

Returns

The resulting QueryString

Applies to