Gets or sets the conference ID of the new conference to schedule, or the ID of the conference to update.

Namespace:  Microsoft.Rtc.Collaboration.ConferenceManagement
Assembly:  Microsoft.Rtc.Collaboration(in Microsoft.Rtc.Collaboration.dll)

Syntax

Visual Basic (Declaration)
Public 
Property 
ConferenceId 
As 
String
C#
public 
string 
ConferenceId { 
get; 
set; }
Visual C++
public:
property 
String^ 
ConferenceId {
	
String^ 
get ();
	
void 
set (
String^ 
value);
}
JavaScript
function get_
conferenceId();
function set_
conferenceId(
value);

Remarks

Setting this property is optional on scheduling new conferences. If no value is provided, UCMA will automatically generate a 32 bit GUID to use in scheduling.

This property is required on updating an existing conference. Note that converting a Conferenceto a ConferenceScheduleInformationwill automatically preserve the conference ID.

A conference ID should be unique among the conferences organized by a specific user and should be more or equal to 16 characters and less than or equal to 32 characters. Allowed characters are a-z, A-Z and 0-9.

Exceptions

Exception Condition
ArgumentNullException Thrown when the supplied value was null.
ArgumentException Thrown when the length of the supplied string was less than 8 characters or more than 32 characters.

See Also