IVsSccProjectProviderBinding.GetProviderService(Guid) Method
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.
This method retrieves the service ID (SID) of a service object that will be used to instantiate a source control package.
public:
int GetProviderService([Runtime::InteropServices::Out] Guid % pguidService);
public int GetProviderService (out Guid pguidService);
abstract member GetProviderService : Guid -> int
Public Function GetProviderService (ByRef pguidService As Guid) As Integer
Parameters
- pguidService
- Guid
[out] Returns the service GUID (SID) of a service object that will be used to instantiate a source control package.
Returns
If the method succeeds, it returns S_OK. If it fails, it returns an error code.
Remarks
COM Signature
From ivssccprojectproviderbinding.idl
HRESULT GetProviderService(
[out, retval] GUID* pguidService
);
This method is called by Visual Studio when the project is first being added to source control. Later, the service object, obtained with the SID saved from this method, is used to instantiate a source control package during the enlistment process when the project is being retrieved from source control.