IVsSccManager2::IsInstalled Method (Int32)

 

This function determines whether the source control package is installed. Source control packages should always return S_OK and pbInstalled = nonzero.

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

int IsInstalled(
	[OutAttribute] int% pbInstalled
)

Parameters

pbInstalled
Type: System::Int32

[out] Returns nonzero (true) if the source control package is installed; otherwise, returns zero (false). Source control packages should always set this to nonzero (true).

Return Value

Type: System::Int32

Source control packages should always return S_OK.

From ivssccmanager2.idl

HRESULT IsInstalled(
   [out, retval] BOOL *pbInstalled
);

This method is fully implemented only in the Visual Studio Source Control Stub, which acts as an intermediary between Visual Studio and all source control packages. All source control packages should always return S_OK and set pbInstalled to nonzero.

Return to top
Show: