FragmentString.FromUriComponent Method    
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
- 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.FragmentStringPublic Shared Function FromUriComponent (uriComponent As String) As FragmentStringParameters
- 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
- 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.FragmentStringPublic Shared Function FromUriComponent (uri As Uri) As FragmentStringParameters
- uri
- Uri
The Uri object
Returns
The resulting FragmentString