__VSSCCPROVIDERBINDINGOPTIONS Enumeration

 

Indicating whether it can deal with browsing for a source control server.

Namespace:   Microsoft.VisualStudio.Shell.Interop
Assembly:  Microsoft.VisualStudio.Shell.Interop.8.0 (in Microsoft.VisualStudio.Shell.Interop.8.0.dll)

public enum __VSSCCPROVIDERBINDINGOPTIONS

Member nameDescription
VSSCC_PBO_CANBROWSESERVERPATH

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

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

The project server path can be manually edited by the user and validated.

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.

Return to top
Show: