ZAFLAGS 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.
Specifies Internet zone manager access options.
This enumeration supports a bitwise combination of its member values.
public enum class ZAFLAGS
public enum class ZAFLAGS
enum ZAFLAGS
[System.Flags]
public enum ZAFLAGS
[<System.Flags>]
type ZAFLAGS =
Public Enum ZAFLAGS
- Inheritance
-
ZAFLAGS
- Attributes
Fields
ZAFLAGS_ADD_SITES | 2 | Add sites to zone. |
ZAFLAGS_CUSTOM_EDIT | 1 | Custom edit. |
ZAFLAGS_INCLUDE_INTRANET_SITES | 16 | Include intranet sites |
ZAFLAGS_INCLUDE_PROXY_OVERRIDE | 8 | Include proxy override (intranet only). |
ZAFLAGS_NO_UI | 32 | Don't display UI (used for local machines). |
ZAFLAGS_REQUIRE_VERIFICATION | 4 | Requires verification. |
ZAFLAGS_SUPPORTS_VERIFICATION | 64 | Supports server verification. |
ZAFLAGS_UNC_AS_INTRANET | 128 | Handle UNC address using intranet settings. |
Remarks
COM Signature
From vsshell.idl:
typedef enum {
ZAFLAGS_CUSTOM_EDIT = 0x00000001,
ZAFLAGS_ADD_SITES = 0x00000002,
ZAFLAGS_REQUIRE_VERIFICATION = 0x00000004,
ZAFLAGS_INCLUDE_PROXY_OVERRIDE = 0x00000008,
ZAFLAGS_INCLUDE_INTRANET_SITES = 0x00000010,
ZAFLAGS_NO_UI = 0x00000020,
ZAFLAGS_SUPPORTS_VERIFICATION = 0x00000040,
ZAFLAGS_UNC_AS_INTRANET = 0x00000080,
} ZAFLAGS ;