IVsUpdateSolutionEvents4.UpdateSolution_EndUpdateAction(UInt32) Method

Definition

Fired after every update actions ends, and the next one (if any) is about to begin (after the last UpdateProjectCfg_Done(IVsHierarchy, IVsCfg, IVsCfg, UInt32, Int32, Int32) for the same action, but before UpdateSolution_EndLastUpdateAction() if this is the last action).

public:
 void UpdateSolution_EndUpdateAction(System::UInt32 dwAction);
public:
 void UpdateSolution_EndUpdateAction(unsigned int dwAction);
void UpdateSolution_EndUpdateAction(unsigned int dwAction);
public void UpdateSolution_EndUpdateAction (uint dwAction);
abstract member UpdateSolution_EndUpdateAction : uint32 -> unit
Public Sub UpdateSolution_EndUpdateAction (dwAction As UInteger)

Parameters

dwAction
UInt32

[in] The update action that is about to end.

Remarks

This method is always paired with UpdateSolution_BeginUpdateAction with matching dwAction, with no nested pairs allowed.

The values for dwAction are flags or combinations of flags from the VSSOLNBUILDUPDATEFLAGS enumeration. See UpdateSolution_BeginUpdateAction for the list of legal values.

Applies to