FragmentString.FromUriComponent Method

Definition

Overloads

FromUriComponent(String)

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

FromUriComponent(Uri)

Returns an FragmentString given the fragment as from a Uri object. Relative Uri objects are not supported.

FromUriComponent(String)

Source:
FragmentString.cs
Source:
FragmentString.cs

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

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

Parameters

uriComponent
String

The escaped fragment as it appears in the URI format.

Returns

The resulting FragmentString

Applies to

FromUriComponent(Uri)

Source:
FragmentString.cs
Source:
FragmentString.cs

Returns an FragmentString given the fragment as from a Uri object. Relative Uri objects are not supported.

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

Parameters

uri
Uri

The Uri object

Returns

The resulting FragmentString

Applies to