IVsSccProjectProviderBinding.GetProviderService Method
This method retrieves the service ID (SID) of a service object that will be used to instantiate a source control package.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop.8.0 (in Microsoft.VisualStudio.Shell.Interop.8.0.dll)
Syntax
‘선언
Function GetProviderService ( _
<OutAttribute> ByRef pguidService As Guid _
) As Integer
‘사용 방법
Dim instance As IVsSccProjectProviderBinding
Dim pguidService As Guid
Dim returnValue As Integer
returnValue = instance.GetProviderService(pguidService)
int GetProviderService(
out Guid pguidService
)
int GetProviderService(
[OutAttribute] Guid% pguidService
)
abstract GetProviderService :
pguidService:Guid byref -> int
function GetProviderService(
pguidService : Guid
) : int
Parameters
- pguidService
Type: System.Guid%
[out] Returns the service GUID (SID) of a service object that will be used to instantiate a source control package.
Return Value
Type: System.Int32
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.
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.
See Also
Reference
IVsSccProjectProviderBinding Interface