QueryString.FromUriComponent Method (String)
Returns a PathString given the path as it is escaped in the URI format. The string MUST NOT contain any value that is not a path.
Namespace: Microsoft.Owin
Assembly: Microsoft.Owin (in Microsoft.Owin.dll)
Syntax
'Declaration
Public Shared Function FromUriComponent ( _
uriComponent As String _
) As QueryString
'Usage
Dim uriComponent As String
Dim returnValue As QueryString
returnValue = QueryString.FromUriComponent(uriComponent)
public static QueryString FromUriComponent(
string uriComponent
)
public:
static QueryString FromUriComponent(
String^ uriComponent
)
static member FromUriComponent :
uriComponent:string -> QueryString
public static function FromUriComponent(
uriComponent : String
) : QueryString
Parameters
- uriComponent
Type: System.String
The escaped path as it appears in the URI format.
Return Value
Type: Microsoft.Owin.QueryString
The resulting PathString.