Click or drag to resize

ParticipantMediaStatus Enumeration

The status of participant media known by conference server. This status indicates what was negotiated between participant and conference server. The status could be changed if participant updates media by executing any network operation. For example local audio(microphone) mute will not affect participant audio status, if it is not reported to the conference server.

Namespace:  Avaya.ClientServices
Assembly:  AvayaClientServices (in AvayaClientServices.dll) Version: 550.0.60.0
Syntax
C#
public enum ParticipantMediaStatus
Members
  Member nameValueDescription
NoMedia0 An indication of no any active media transmission or receiving. It means client doesn't have this type of media in the conference. For example, could be reported when participant joins the conference with audio only. In this case video status will be no media. For example, could be reported when participant joins the conference as data only participant. In this case audio/video status could be no media. For example, could be reported when participant holds the call which result in renegotiating stopping sending/receiving media.
SendOnly1 An indication of active media transmitting, no sending. It means client doesn't receive this type of media in the conference, only send it. Could be reported for audio when participant holds the conference call. In this case audio could be negotiated as sendonly. Could be reported as transition state during local operation(e.g video escalation). NoMedia->SendOnly->SendRecv
ReceiveOnly2 An indication of active media receiving, no transmitting. It means client doesn't send this type of media in the conference, just receive it. Could be reported for pause video local operation. In this case video channels state are negotiated as recvonly. Could be reported as transition state during local operation(e.g video escalation). NoMedia->ReceiveOnly->SendRecv
SendReceive3 An indication of active media receiving and transmitting. It means client sends and receives this type of media in the conference. Could be reported for active audio/video conference.
SendBlockedByServer4 An indication of active media receiving, and transmitting is blocked by server. It means other participant doesn't get media from this participant, because server has blocked it. Could be reported when moderator has muted participant's audio or blocked participant's video. Could be reported when participant has blocked self media on conference server by sending request to server(network message or DTMF digit).
SelfMuted5 The participant is receiving active media, but transmitting is blocked by participant itself. This means that other participant(s) in the call don't get media from this participant, because the participant has muted itself.
BothMuted6 The participant is receiving active media, but transmitting is blocked by both the server and by the participant itself.
See Also