Edit

Share via


ConferenceScheduleInformation.PhoneAccessEnabled Property

Definition

Gets or sets whether participants can join the conference over the phone.

public:
 property bool PhoneAccessEnabled { bool get(); void set(bool value); };
public bool PhoneAccessEnabled { get; set; }
member this.PhoneAccessEnabled : bool with get, set
Public Property PhoneAccessEnabled As Boolean

Property Value

Remarks

Setting this property to true means that conference participants can join the conference over the phone through the Conferencing Auto Attendant (CAA) service.

Note that this setting is not preserved on converting a Conference object to a ConferenceScheduleInformation object. Therefore, on updating a conference that is phone access enabled, this property needs to be set again after the conversion. //conference is an object of type Microsoft.Rtc.Collaboration.Conference. //Convert to scheduling information. ConferenceScheduleInformation csi = (ConferenceScheduleInformation) conference; //Explicitly set the phone access enabled property after the conversion to preserve the //original setting. //If the converted conference has phone information, then it supports phone access. csi.PhoneAccessEnabled = (conference.PhoneInformation != null); //Change some property csi.Description = "New conference description"; userEndpoint.ConferenceServices.BeginUpdateConference(csi,UpdateCallback,userEndpoint.ConferenceServices);

Applies to