Click or drag to resize
ConferenceAddTerminal Method
Add a terminal to a conference call by terminal IP address. The terminal is added using bridge-assisted dial-out. The method may be called multiple times to add multiple terminals to the conference call.

Namespace: Avaya.ClientServices
Assembly: AvayaClientServices (in AvayaClientServices.dll) Version: 493.0.70.0
Syntax
C#
public void AddTerminal(
	string terminalIPAddress,
	ConferenceConferenceActionCompletionHandler completionHandler
)

Parameters

terminalIPAddress
Type: SystemString
Terminal IP address to add the terminal to the conference call.
completionHandler
Type: Avaya.ClientServicesConferenceConferenceActionCompletionHandler
The completion handler for this operation. Operation success or failure is reported through this handler.
Remarks
If the dial-out is successful, a new ActiveParticipant object is added to the conference roster list, and the application receives a success/failure indication through the supplied completionHandler delegate. In order to cancel dial-out terminal please use the method RemoveParticipant(ActiveParticipant, ConferenceConferenceActionCompletionHandler)
See Also