Gets or sets the conference passcode to be used by anonymous users.

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

Syntax

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

Remarks

Set this property when scheduling conferneces with anonymous access. Note that this propery has to be set even if passcode verification is set to optional since legacy clients like LiveMeeting do not support optional passcode verification.

The passcode is a case-sensitive alpha-numeric string between 8 to 16 characters long. However, for phone enabled conferences the passcode has to be numeric only.

Exceptions

Exception Condition
ArgumentNullException Thrown if a null value is supplied.

See Also