Hinweis
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, sich anzumelden oder das Verzeichnis zu wechseln.
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, das Verzeichnis zu wechseln.
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
'Usage
Dim instance As IVsUpdateSolutionEvents
Dim fSucceeded As Integer
Dim fModified As Integer
Dim fCancelCommand As Integer
Dim returnValue As Integer
returnValue = instance.UpdateSolution_Done(fSucceeded, _
fModified, fCancelCommand)
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
- 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
IVsUpdateSolutionEvents Interface