IVsUpdateSolutionEvents.UpdateSolution_Done(Int32, Int32, 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.
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.
Remarks
COM Signature
From vsshell.idl:
HRESULT IVsUpdateSolutionEvents::UpdateSolution_Done(
[in] BOOL fSucceeded,
[in] BOOL fModified,
[in] BOOL fCancelCommand
);