|
NewCall Delegate |
A delegate for the event that is fired when a new call arrives from the Voice Elements Server.
Namespace:
VoiceElements.Client
Assembly:
VoiceElementsClient (in VoiceElementsClient.dll) Version: 8.6.1.1
Syntax public delegate void NewCall(
Object sender,
NewCallEventArgs e
)
Public Delegate Sub NewCall (
sender As Object,
e As NewCallEventArgs
)
public delegate void NewCall(
Object^ sender,
NewCallEventArgs^ e
)
type NewCall =
delegate of
sender : Object *
e : NewCallEventArgs -> unit
Parameters
- sender
- Type: SystemObject
This is a reference to the object that has sent the New Call Event. - e
- Type: VoiceElements.ClientNewCallEventArgs
This is a reference to the New Call Event Args object. When receiving a new call, this is most useful for retrieving the
Channel Resource and the Voice Resource, which are used for all voice processing/telephony
functions for the call.
Remarks Handling Inbound Call Basics
To begin learning about how to handle inbound calls, start by reading about the
New Call Event.
See Also