'Declaration
Public Function New( _ ByVal sourceComponent As IComponent, _ ByVal sourcePath As String, _ ByVal extenderEventProvider As IExtenderEventProvider _ )
'Usage
Dim sourceComponent As IComponent Dim sourcePath As String Dim extenderEventProvider As IExtenderEventProvider Dim instance As New EventSource(sourceComponent, sourcePath, extenderEventProvider)
public EventSource( IComponent sourceComponent, string sourcePath, IExtenderEventProvider extenderEventProvider )
public: EventSource( IComponent^ sourceComponent, String^ sourcePath, IExtenderEventProvider^ extenderEventProvider )
Parameters
- sourceComponent
- The component that is the source of the event.
The value of this parameter can be
null
(Nothing
in Visual Basic). - sourcePath
- Path to the event on the source component (typically, an event name).
The value of this parameter cannot be
null
(Nothing
in Visual Basic). - extenderEventProvider
- The extender event provider that enhances the source component with the event.
The value of this parameter can be
null
(Nothing
in Visual Basic).