Manager.URL_IS Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Identifies the type of URL that the unmanaged UrlIs function will test for.
This API supports the product infrastructure and is not intended to be used directly from your code.
public: enum class Manager::URL_IS
public enum Manager.URL_IS
type Manager.URL_IS =
Public Enum Manager.URL_IS
- Inheritance
Fields
Name | Value | Description |
---|---|---|
URLIS_URL | 0 | The URL is valid. |
URLIS_OPAQUE | 1 | The URL is opaque, which means that it has a scheme that is not followed by two forward slashes (//). |
URLIS_NOHISTORY | 2 | The URL is a no-history URL, which is a URL that browsers typically do not include in their navigation history. |
URLIS_FILEURL | 3 | The URL is a file URL, which takes the form file://host/path. |
URLIS_APPLIABLE | 4 | The UrlIs function will attempt to determine a valid scheme for the URL. |
URLIS_DIRECTORY | 5 | The URL string ends with a directory name. |
URLIS_HASQUERY | 6 | The URL has an appended query string. |
Remarks
This enumeration is used in calls to the unmanaged UrlIs function.