diaGlobWrapper Help
Delegate or function pointer where the underlying telephony events on the diaGlobWrapper instance will be raised.

Namespace:  Inkostar
Assembly:  DiaGlobWrapper (in DiaGlobWrapper.dll) Version: 0.0.0.0

Syntax

C#
public delegate void EventReceived(
	Object sender,
	EventArgs e,
	DiaGlobWrapperCommon..::.EventReceived TypeOfEvent,
	Channel AffectedChannel,
	EventInformation EventInfo,
	DateTime EventTimeStamp
)
Visual Basic (Declaration)
Public Delegate Sub EventReceived ( _
	sender As Object, _
	e As EventArgs, _
	TypeOfEvent As DiaGlobWrapperCommon..::.EventReceived, _
	AffectedChannel As Channel, _
	EventInfo As EventInformation, _
	EventTimeStamp As DateTime _
)
Visual C++
public delegate void EventReceived(
	Object^ sender, 
	EventArgs^ e, 
	DiaGlobWrapperCommon..::.EventReceived TypeOfEvent, 
	Channel^ AffectedChannel, 
	EventInformation^ EventInfo, 
	DateTime EventTimeStamp
)

Parameters

sender
Type: System..::.Object
The instance of diaGlobWrapper.
e
Type: System..::.EventArgs
The actual event being raised.
TypeOfEvent
Type: Inkostar..::.DiaGlobWrapperCommon..::.EventReceived
The type of event being raised. See Inkostar.DiaGlobWrapperCommon.EventReceived enum for the complete list of events.
AffectedChannel
Type: Inkostar..::.Channel
The channel instance where the event was raised.
EventInfo
Type: Inkostar..::.EventInformation
The event data content.
EventTimeStamp
Type: System..::.DateTime
The Date and Time stamp of the event.

See Also