Share via


ActionableUpdateSolutionListener.UpdateSolutionDoneEventHandler Delegate

Represents the method that will handle the UpdateSolution_DoneEvent event when it is raised.

Namespace:  Microsoft.VisualStudio.Data.Schema.Project.Project.Utilities
Assembly:  Microsoft.VisualStudio.Data.Schema.Project (in Microsoft.VisualStudio.Data.Schema.Project.dll)

Syntax

'Declaration
Public Delegate Function UpdateSolutionDoneEventHandler ( _
    succeeded As Integer, _
    modified As Integer, _
    cancelCommand As Integer _
) As Integer
'Usage
Dim instance As New UpdateSolutionDoneEventHandler(AddressOf HandlerMethod)
public delegate int UpdateSolutionDoneEventHandler(
    int succeeded,
    int modified,
    int cancelCommand
)
public delegate int UpdateSolutionDoneEventHandler(
    int succeeded, 
    int modified, 
    int cancelCommand
)
JScript does not support delegates.
type UpdateSolutionDoneEventHandler = 
    delegate of 
        succeeded:int * 
        modified:int * 
        cancelCommand:int -> int

Parameters

  • succeeded
    Type: System.Int32
    Specifies whether any update actions failed
  • modified
    Type: System.Int32
    Specifies whether any update action succeeded
  • cancelCommand
    Type: System.Int32
    Specifies whether actions were cancelled

Return Value

Type: System.Int32

See Also

Reference

Microsoft.VisualStudio.Data.Schema.Project.Project.Utilities Namespace