Share via


ActionableSolutionListener.OnAfterOpenSolutionEventHandler Delegate

Represents the method that will handle the AfterOpenSolutionEvent 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 OnAfterOpenSolutionEventHandler ( _
    unknownReserved As Object, _
    newSolution As Integer _
) As Integer
'Usage
Dim instance As New OnAfterOpenSolutionEventHandler(AddressOf HandlerMethod)
public delegate int OnAfterOpenSolutionEventHandler(
    Object unknownReserved,
    int newSolution
)
public delegate int OnAfterOpenSolutionEventHandler(
    Object^ unknownReserved, 
    int newSolution
)
JScript does not support delegates.
type OnAfterOpenSolutionEventHandler = 
    delegate of 
        unknownReserved:Object * 
        newSolution:int -> int

Parameters

  • newSolution
    Type: System.Int32
    Specifies whether the solution has just been created

Return Value

Type: System.Int32

See Also

Reference

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