__VSSCCPROVIDERBINDINGOPTIONS 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.
Indicating whether it can deal with browsing for a source control server.
public enum class __VSSCCPROVIDERBINDINGOPTIONS
public enum class __VSSCCPROVIDERBINDINGOPTIONS
enum __VSSCCPROVIDERBINDINGOPTIONS
public enum __VSSCCPROVIDERBINDINGOPTIONS
type __VSSCCPROVIDERBINDINGOPTIONS =
Public Enum __VSSCCPROVIDERBINDINGOPTIONS
- Inheritance
-
__VSSCCPROVIDERBINDINGOPTIONS
Fields
VSSCC_PBO_CANBROWSESERVERPATH | 1 | The project supports a browse dialog box used to find a source control server. If this is not set, then Visual Studio relies on a default server browse dialog box. |
VSSCC_PBO_CANDISPLAYSERVERPATH | 4 | Shows the server path when the user is given a choice of source control servers. If not set, then the user sees only the source control package's name. |
VSSCC_PBO_CANEDITSERVERPATH | 2 | The project server path can be manually edited by the user and validated. |
Remarks
COM Signature
From IVsSccProjectProviderBinding.idl:
enum __VSSCCPROVIDERBINDINGOPTIONS
{
VSSCC_PBO_CANBROWSESERVERPATH = 0x00000001,
VSSCC_PBO_CANEDITSERVERPATH = 0x00000002,
VSSCC_PBO_CANDISPLAYSERVERPATH = 0x00000004,
};
typedef DWORD VSSCCPROVIDERBINDINGOPTIONS;
These values are returned by a call to GetProviderBindingOptions.