| DiaGlobWrapperEventReceived Delegate |
diaGlobWrapper Help
Delegate or function pointer where the underlying telephony events on the diaGlobWrapper instance will be raised.
Namespace: InkostarAssembly: DiaGlobWrapper (in DiaGlobWrapper.dll) Version: 0.0.0.0
Syntaxpublic delegate void EventReceived(
Object sender,
EventArgs e,
DiaGlobWrapperCommonEventReceived TypeOfEvent,
Channel AffectedChannel,
EventInformation EventInfo,
DateTime EventTimeStamp
)
Public Delegate Sub EventReceived (
sender As Object,
e As EventArgs,
TypeOfEvent As DiaGlobWrapperCommonEventReceived,
AffectedChannel As Channel,
EventInfo As EventInformation,
EventTimeStamp As DateTime
)
public delegate void EventReceived(
Object^ sender,
EventArgs^ e,
DiaGlobWrapperCommonEventReceived TypeOfEvent,
Channel^ AffectedChannel,
EventInformation^ EventInfo,
DateTime EventTimeStamp
)
type EventReceived =
delegate of
sender : Object *
e : EventArgs *
TypeOfEvent : DiaGlobWrapperCommonEventReceived *
AffectedChannel : Channel *
EventInfo : EventInformation *
EventTimeStamp : DateTime -> unitParameters
- sender
- Type: SystemObject
The instance of diaGlobWrapper. - e
- Type: SystemEventArgs
The actual event being raised. - TypeOfEvent
- Type: InkostarDiaGlobWrapperCommonEventReceived
The type of event being raised. See Inkostar.DiaGlobWrapperCommon.EventReceived enum for the complete list of events. - AffectedChannel
- Type: InkostarChannel
The channel instance where the event was raised. - EventInfo
- Type: InkostarEventInformation
The event data content. - EventTimeStamp
- Type: SystemDateTime
The Date and Time stamp of the event.
See Also