Click or drag to resize
ConferenceAddParticipantFromCall Method
If the method is called on a 2-party call, the two calls are merged together to create a conference call. This call status change is reported via a ConferenceStatusChanged event on the Call object associated with this conference. If the method is called on a conference call, the input argument call is transferred over to the conference call represented by this object. If the user wants to create a conference call by merging multiple existing calls, this method can be called multiple times to join multiple calls into the conference.

Namespace: Avaya.ClientServices
Assembly: AvayaClientServices (in AvayaClientServices.dll) Version: 493.0.70.0
Syntax
C#
public void AddParticipantFromCall(
	Call call,
	ConferenceConferenceActionCompletionHandler completionHandler
)

Parameters

call
Type: Avaya.ClientServicesCall
Call to be joined into 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 call join 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.
See Also