IVsUpdateSolutionEvents2::UpdateSolution_Done Method (Int32, Int32, Int32)

 

Called when a build is completed.

Namespace:   Microsoft.VisualStudio.Shell.Interop
Assembly:  Microsoft.VisualStudio.Shell.Interop (in Microsoft.VisualStudio.Shell.Interop.dll)

int UpdateSolution_Done(
	int fSucceeded,
	int fModified,
	int fCancelCommand
)

Parameters

fSucceeded
Type: System::Int32

[in] true if no update actions failed.

fModified
Type: System::Int32

[in] true if any update action succeeded.

fCancelCommand
Type: System::Int32

[in] true if update actions were canceled.

Return Value

Type: System::Int32

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

From vsshell.idl:

HRESULT IVsUpdateSolutionEvents2::UpdateSolution_Done(
   [in] BOOL fSucceeded,
   [in] BOOL fModified,
   [in] BOOL fCancelCommand
);
Return to top
Show: