namespace Vanara.PInvoke { /// Contains all the predefined zones used by Windows Internet Explorer. [PInvokeData("urlmon.h")] public enum URLZONE { /// Internet Explorer 7. Invalid zone. Used only if no appropriate zone is available. URLZONE_INVALID = -1, /// Minimum value for a predefined zone. URLZONE_PREDEFINED_MIN = 0, /// Zone used for content already on the user's local computer. This zone is not exposed by the user interface. URLZONE_LOCAL_MACHINE = 0, /// Zone used for content found on an intranet. URLZONE_INTRANET = (URLZONE_LOCAL_MACHINE + 1), /// Zone used for trusted Web sites on the Internet. URLZONE_TRUSTED = (URLZONE_INTRANET + 1), /// Zone used for most of the content on the Internet. URLZONE_INTERNET = (URLZONE_TRUSTED + 1), /// Zone used for Web sites that are not trusted. URLZONE_UNTRUSTED = (URLZONE_INTERNET + 1), /// Maximum value for a predefined zone. URLZONE_PREDEFINED_MAX = 999, /// Minimum value allowed for a user-defined zone. URLZONE_USER_MIN = 1000, /// Maximum value allowed for a user-defined zone. URLZONE_USER_MAX = 10000 } }