ConferenceAddParticipant Method |
Add a participant to a call. If the method is called on a 2-party call, the call is escalated
to a conference call. This call 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 participant is added to the conference call
using bridge-assisted dial-out. This method may be called multiple times to add multiple participants to
the conference call.
Namespace:
Avaya.ClientServices
Assembly:
AvayaClientServices (in AvayaClientServices.dll) Version: 550.0.60.0
Syntaxpublic void AddParticipant(
string participant,
ConferenceConferenceActionCompletionHandler completionHandler
)
Parameters
- participant
- Type: SystemString
Participant to be added 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.
See Also