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 how credentials are attached to a web proxy.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop.9.0 (in Microsoft.VisualStudio.Shell.Interop.9.0.dll)
Syntax
'Declaration
Public Enumeration __VsWebProxyState
public enum __VsWebProxyState
public enum class __VsWebProxyState
type __VsWebProxyState
public enum __VsWebProxyState
Members
Member name | Description | |
---|---|---|
VsWebProxyState_Abort | Terminate the current operation | |
VsWebProxyState_CachedCredentials | Cached credentials attached to proxy | |
VsWebProxyState_DefaultCredentials | Default credentials attached to proxy | |
VsWebProxyState_NoCredentials | Initial state | |
VsWebProxyState_PromptForCredentials | 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;