IVsUpdateSolutionEvents2.UpdateSolution_Done(Int32, Int32, Int32) Method

Definition

Called when a build is completed.

public:
 int UpdateSolution_Done(int fSucceeded, int fModified, int fCancelCommand);
public:
 int UpdateSolution_Done(int fSucceeded, int fModified, int fCancelCommand);
int UpdateSolution_Done(int fSucceeded, int fModified, int fCancelCommand);
public int UpdateSolution_Done (int fSucceeded, int fModified, int fCancelCommand);
abstract member UpdateSolution_Done : int * int * int -> int
Public Function UpdateSolution_Done (fSucceeded As Integer, fModified As Integer, fCancelCommand As Integer) As Integer

Parameters

fSucceeded
Int32

[in] true if no update actions failed.

fModified
Int32

[in] true if any update action succeeded.

fCancelCommand
Int32

[in] true if update actions were canceled.

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 IVsUpdateSolutionEvents2::UpdateSolution_Done(  
   [in] BOOL fSucceeded,  
   [in] BOOL fModified,  
   [in] BOOL fCancelCommand  
);  

Applies to