UriFormat 枚举

定义

控制 URI 信息的转义方式。

public enum class UriFormat
public enum UriFormat
type UriFormat = 
Public Enum UriFormat
继承
UriFormat

字段

SafeUnescaped 3

在请求的 URI 组成部分中具有保留意义的字符将仍然进行转义。 所有其他字符不进行转义。

Unescaped 2

未执行任何转义。

UriEscaped 1

根据 RFC 2396 中的规则执行转义。

注解

此方法使用此 GetComponents 枚举来指定返回 URI 中字符转义的级别。

RFC 2396 定义 URI 的标准转义,可在以下位置 https://rfc-editor.org使用。

如果请求 UriComponents的字符中具有保留含义,则 SafeUnescaped 会保留以下字符进行转义:“%”、“#”、“?”、“/”、“”\和“@”。

适用于