IVsSolutionBuildManager2.UpdateSolutionConfigurationIsActive(Int32) 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.
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
.