Share via


ActionableSolutionListener.OnAfterOpenProjectEventHandler Delegate

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

Parameters

  • added
    Type: System.Int32
    Specifies whether the project is added to the solution after the solution is open

Return Value

Type: System.Int32

See Also

Reference

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