C# Class TelAPI.InboundXML.Element.Conference

Inheritance: DialElement
Show file Open project: TelAPI/telapi-dotnet Class Usage Examples

Private Properties

Property Type Description

Public Methods

Method Description
Conference ( ) : YAXLib
Create ( string conferenceName ) : Conference

Conference element allows the ongoing call to connect to a conference room.

Create ( string conferenceName, bool muted, bool beep, bool startConferenceOnEnter, bool endConferenceOnExit, long maxParticipants, string waitUrl, HttpMethod waitMethod, bool hangupOnStar, string callbackUrl, HttpMethod callbackMethod, string waitSound, HttpMethod waitSoundMethod, string digitsMatch, bool stayAlone ) : Conference

Conference element allows the ongoing call to connect to a conference room.

Method Details

Conference() public method

public Conference ( ) : YAXLib
return YAXLib

Create() public static method

Conference element allows the ongoing call to connect to a conference room.
public static Create ( string conferenceName ) : Conference
conferenceName string Name of the conference
return Conference

Create() public static method

Conference element allows the ongoing call to connect to a conference room.
public static Create ( string conferenceName, bool muted, bool beep, bool startConferenceOnEnter, bool endConferenceOnExit, long maxParticipants, string waitUrl, HttpMethod waitMethod, bool hangupOnStar, string callbackUrl, HttpMethod callbackMethod, string waitSound, HttpMethod waitSoundMethod, string digitsMatch, bool stayAlone ) : Conference
conferenceName string Name of the conference
muted bool Boolean value specifying if the conference should be muted.
beep bool Boolean value specifying if a beep should play upon entrance to conference.
startConferenceOnEnter bool Boolean value specifying if conference should begin upon entrance.
endConferenceOnExit bool Boolean value specifying if conference should begin upon exit.
maxParticipants long The maximum number of participants allowed in the conference call.
waitUrl string URL conference participants can be sent to while they wait for entrance into the conference.
waitMethod HttpMethod Method used to request waitUrl.
hangupOnStar bool Boolean value specifying if pressing * should end the conference.
callbackUrl string URL where some parameters specific to will be sent once it is completed.
callbackMethod HttpMethod Method used to request the callback URL.
waitSound string URL to sound that can be played while waiting to enter the conference.
waitSoundMethod HttpMethod Method used to request the waitsound URL.
digitsMatch string Specifies digits that TelAPI should listen for and send to the callbackUrl if a caller inputs them. Seperate additional digits or digit patterns with a comma.
stayAlone bool Boolean value specifying if the caller should stay alone in the conference call.
return Conference