ActionableSolutionListener.OnAfterAsynchOpenProjectEventHandler Delegate
Represents the method that will handle the AfterAsynchOpenProjectEvent 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 OnAfterAsynchOpenProjectEventHandler ( _
hierarchy As IVsHierarchy, _
added As Integer _
) As Integer
'Usage
Dim instance As New OnAfterAsynchOpenProjectEventHandler(AddressOf HandlerMethod)
public delegate int OnAfterAsynchOpenProjectEventHandler(
IVsHierarchy hierarchy,
int added
)
public delegate int OnAfterAsynchOpenProjectEventHandler(
IVsHierarchy^ hierarchy,
int added
)
JScript does not support delegates.
type OnAfterAsynchOpenProjectEventHandler =
delegate of
hierarchy:IVsHierarchy *
added:int -> int
Parameters
- hierarchy
Type: Microsoft.VisualStudio.Shell.Interop.IVsHierarchy
The hierarchy of the project being opened
- added
Type: System.Int32
Specifies whether the project is added after the solution is opened
Return Value
Type: System.Int32
See Also
Reference
Microsoft.VisualStudio.Data.Schema.Project.Project.Utilities Namespace