IVsBuildStatusCallback.BuildEnd Method

Notifies the environment that a build operation has ended. fSuccess indicates whether the build completed successfully.

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

Syntax

‘선언
Function BuildEnd ( _
    fSuccess As Integer _
) As Integer
‘사용 방법
Dim instance As IVsBuildStatusCallback
Dim fSuccess As Integer
Dim returnValue As Integer

returnValue = instance.BuildEnd(fSuccess)
int BuildEnd(
    int fSuccess
)
int BuildEnd(
    [InAttribute] int fSuccess
)
abstract BuildEnd : 
        fSuccess:int -> int 
function BuildEnd(
    fSuccess : int
) : int

Parameters

  • fSuccess
    Type: System.Int32
    [in] true if the build operation completed successfully. After an up-to-date check, fSuccess is set to true when the project configuration is up to date and false when the project configuration is not up to date.

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 IVsBuildStatusCallback::BuildEnd(
   [in] BOOL fSuccess
);

.NET Framework Security

See Also

Reference

IVsBuildStatusCallback Interface

IVsBuildStatusCallback Members

Microsoft.VisualStudio.Shell.Interop Namespace