Manager.URL_PART 枚举
定义
标识 URL 的各个部分。Identifies the parts of a URL.
此 API 支持产品基础结构,不能在代码中直接使用。
public: enum class Manager::URL_PART
public enum Manager.URL_PART
type Manager.URL_PART =
Public Enum Manager.URL_PART
- 继承
字段
HOSTNAME | 2 | URL 的主机名部分。The host name part of the URL. |
NONE | 0 | 没有 URL 的部分。No part of the URL. |
PASSWORD | 4 | URL 的密码部分。The password part of the URL. |
PORT | 5 | URL 的端口号部分。The port number part of the URL. |
QUERY | 6 | URL 的查询字符串部分。The query string part of the URL. |
SCHEME | 1 | URL 方案。The URL scheme. |
USERNAME | 3 | URL 的用户名部分。The user name part of the URL. |