UriFormat 枚举
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
控制 URI 信息的转义方式。
public enum class UriFormat
public enum UriFormat
type UriFormat =
Public Enum UriFormat
- 继承
字段
SafeUnescaped | 3 | 在请求的 URI 组成部分中具有保留意义的字符将仍然进行转义。 所有其他字符不进行转义。 |
Unescaped | 2 | 未执行任何转义。 |
UriEscaped | 1 | 根据 RFC 2396 中的规则执行转义。 |
注解
此方法使用此 GetComponents 枚举来指定返回 URI 中字符转义的级别。
RFC 2396 定义 URI 的标准转义,可在以下位置 https://rfc-editor.org使用。
如果请求 UriComponents的字符中具有保留含义,则 SafeUnescaped 会保留以下字符进行转义:“%”、“#”、“?”、“/”、“”\和“@”。