UriKind 枚举
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
定义不同类型的 URI。
public enum class UriKind
public enum UriKind
type UriKind =
Public Enum UriKind
- 继承
字段
Absolute | 1 | 该 URI 是绝对的。 |
Relative | 2 | 该 URI 是相对的。 |
RelativeOrAbsolute | 0 | URI 类型不确定。 |
注解
绝对 URI 的特点是资源 (示例的完整引用: http://www.contoso.com/index.html
) ,而相对 URI 依赖于以前定义的基 URI (示例: /index.html
) 。
以下列表显示了一些使用枚举的 UriKind
API:
- Uri.Uri(String, UriKind)
- Uri.IsWellFormedUriString(String, UriKind)
- Uri.TryCreate(String, UriKind, Uri)