IVsSolutionBuildManager::UpdateSolutionConfigurationIsActive Method (Int32)

 

Checks for any build, clean, or deploy action in progress.

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

int UpdateSolutionConfigurationIsActive(
	[OutAttribute] int% pfIsActive
)

Parameters

pfIsActive
Type: System::Int32

[out] Pointer to a flag indicating whether an action is active.

Return Value

Type: System::Int32

If the method succeeds, it returns S_OK. If it fails, it returns an error code.

From vsshell.idl:

HRESULT IVsSolutionBuildManager::UpdateSolutionConfigurationIsActive(
   [out] BOOL *pfIsActive
);

The build manager sets pfIsActive to true if any deploy, build or clean action is in progress. Otherwise, it sets pfIsActive to false.

Return to top
Show: