ConferenceScheduleInformation.PhoneAccessEnabled Property
Gets or sets whether participants can join the conference over the phone.
Namespace: Microsoft.Rtc.Collaboration.ConferenceManagement
Assembly: Microsoft.Rtc.Collaboration (in Microsoft.Rtc.Collaboration.dll)
Syntax
'Declaration
Public Property PhoneAccessEnabled As Boolean
Get
Set
'Usage
Dim instance As ConferenceScheduleInformation
Dim value As Boolean
value = instance.PhoneAccessEnabled
instance.PhoneAccessEnabled = value
public bool PhoneAccessEnabled { get; set; }
Property Value
Type: System.Boolean
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 must 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);
See Also
Reference
ConferenceScheduleInformation Class