IVsUpdateSolutionEvents.UpdateSolution_Done Method

Called when a build is completed.

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

Syntax

'Declaration
Function UpdateSolution_Done ( _
    fSucceeded As Integer, _
    fModified As Integer, _
    fCancelCommand As Integer _
) As Integer
int UpdateSolution_Done(
    int fSucceeded,
    int fModified,
    int fCancelCommand
)
int UpdateSolution_Done(
    [InAttribute] int fSucceeded, 
    [InAttribute] int fModified, 
    [InAttribute] int fCancelCommand
)
abstract UpdateSolution_Done : 
        fSucceeded:int * 
        fModified:int * 
        fCancelCommand:int -> int
function UpdateSolution_Done(
    fSucceeded : int, 
    fModified : int, 
    fCancelCommand : int
) : int

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.

Remarks

COM Signature

From vsshell.idl:

HRESULT IVsUpdateSolutionEvents::UpdateSolution_Done(
   [in] BOOL fSucceeded,
   [in] BOOL fModified,
   [in] BOOL fCancelCommand
);

.NET Framework Security

See Also

Reference

IVsUpdateSolutionEvents Interface

Microsoft.VisualStudio.Shell.Interop Namespace