IVsSolutionBuildManager2.UpdateSolutionConfigurationIsActive(Int32) Method

Definition

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

public:
 int UpdateSolutionConfigurationIsActive([Runtime::InteropServices::Out] int % pfIsActive);
int UpdateSolutionConfigurationIsActive([Runtime::InteropServices::Out] int & pfIsActive);
public int UpdateSolutionConfigurationIsActive (out int pfIsActive);
abstract member UpdateSolutionConfigurationIsActive : int -> int
Public Function UpdateSolutionConfigurationIsActive (ByRef pfIsActive As Integer) As Integer

Parameters

pfIsActive
Int32

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

Returns

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

Implements

Remarks

COM Signature

From vsshell.idl:

HRESULT IVsSolutionBuildManager2::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.

Applies to