FragmentString.FromUriComponent 方法

定义

重载

FromUriComponent(String)

在以 URI 格式转义时,返回给定片段的 FragmentString。 字符串不得包含任何不是片段的值。

FromUriComponent(Uri)

返回一个 FragmentString,给定 Uri 对象中的片段为 。 不支持相对 Uri 对象。

FromUriComponent(String)

Source:
FragmentString.cs
Source:
FragmentString.cs
Source:
FragmentString.cs

在以 URI 格式转义时,返回给定片段的 FragmentString。 字符串不得包含任何不是片段的值。

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

参数

uriComponent
String

以 URI 格式显示的转义片段。

返回

生成的 FragmentString

适用于

FromUriComponent(Uri)

Source:
FragmentString.cs
Source:
FragmentString.cs
Source:
FragmentString.cs

返回一个 FragmentString,给定 Uri 对象中的片段为 。 不支持相对 Uri 对象。

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

参数

uri
Uri

Uri 对象

返回

生成的 FragmentString

适用于