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
'Declaración
Function BuildEnd ( _
fSuccess As Integer _
) As Integer
'Uso
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
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.
See Also
Reference
IVsBuildStatusCallback Interface