HoldType Enum

Definition

Defines the type of hold AudioVideoFlow should use.

This enumeration supports a bitwise combination of its member values.

public enum class HoldType
[System.Flags]
public enum HoldType
type HoldType = 
Public Enum HoldType
Inheritance
HoldType
Attributes

Fields

BothEndpoints 3

Stop both outgoing send and incoming receive streams. Media will not be sent to the remote endpoint. Media received from the remote endpoint will be discarded.

None 0

Keep send and receive active.

RemoteEndpoint 1

Stop only the incoming receive stream direction. Media received from the remote endpoint will be discarded.

RemoteEndpointAllowTones 9

Stop only the incoming receive stream direction while still allowing DTMF tones to be received and recognized by an attached ToneController object. Other media received from the remote endpoint will be discarded.

RemoteEndpointMusicOnHold 5

Stop only the incoming receive stream direction and indicate to the remote endpoint to expect music or similar media while on hold. The application is responsible for playing the music using a Player object attached to the AudioVideoFlow. Media received from the remote endpoint will be discarded.

Remarks

Acts as a flag.

Applies to