Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Specifies Internet zone manager access options.
This enumeration has a FlagsAttribute attribute that allows a bitwise combination of its member values.
Namespace: Microsoft.VisualStudio.OLE.Interop
Assembly: Microsoft.VisualStudio.OLE.Interop (in Microsoft.VisualStudio.OLE.Interop.dll)
Syntax
'Declaration
<FlagsAttribute> _
Public Enumeration ZAFLAGS
[FlagsAttribute]
public enum ZAFLAGS
[FlagsAttribute]
public enum class ZAFLAGS
[<FlagsAttribute>]
type ZAFLAGS
public enum ZAFLAGS
Members
Member name | Description | |
---|---|---|
ZAFLAGS_ADD_SITES | Add sites to zone. | |
ZAFLAGS_CUSTOM_EDIT | Custom edit. | |
ZAFLAGS_INCLUDE_INTRANET_SITES | Include intranet sites | |
ZAFLAGS_INCLUDE_PROXY_OVERRIDE | Include proxy override (intranet only). | |
ZAFLAGS_NO_UI | Don't display UI (used for local machines). | |
ZAFLAGS_REQUIRE_VERIFICATION | Requires verification. | |
ZAFLAGS_SUPPORTS_VERIFICATION | Supports server verification. | |
ZAFLAGS_UNC_AS_INTRANET | 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 ;