TelAPI.InboundXML.Element.Conference.Create C# (CSharp) Method

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
        public static Conference Create(string conferenceName)
        {
            var conference = new Conference();
            conference.ConferenceName = conferenceName;

            return conference;
        }

Same methods

Conference::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