__VsWebProxyState 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 how credentials are attached to a web proxy.
public enum class __VsWebProxyState
public enum class __VsWebProxyState
enum __VsWebProxyState
public enum __VsWebProxyState
type __VsWebProxyState =
Public Enum __VsWebProxyState
- Inheritance
-
__VsWebProxyState
Fields
VsWebProxyState_Abort | 4 | Terminate the current operation |
VsWebProxyState_CachedCredentials | 2 | Cached credentials attached to proxy |
VsWebProxyState_DefaultCredentials | 1 | Default credentials attached to proxy |
VsWebProxyState_NoCredentials | 0 | Initial state |
VsWebProxyState_PromptForCredentials | 3 | Prompt user for credentials |
Remarks
COM Signature
From vsshell90.idl:
enum __VsWebProxyState
{
VsWebProxyState_NoCredentials = 0,
VsWebProxyState_DefaultCredentials = 1,
VsWebProxyState_CachedCredentials = 2,
VsWebProxyState_PromptForCredentials = 3,
VsWebProxyState_Abort = 4
};
typedef DWORD VsWebProxyState;