MeetingWorkspaceUrl property

String? MeetingWorkspaceUrl
Gets or sets the URL of the meeting workspace. A meeting workspace is a shared Web site for planning meetings and tracking results.

Implementation

String? get MeetingWorkspaceUrl =>
    this.PropertyBag[AppointmentSchema.MeetingWorkspaceUrl] as String?;
void MeetingWorkspaceUrl=(String? value)

Implementation

set MeetingWorkspaceUrl(String? value) =>
    this.PropertyBag[AppointmentSchema.MeetingWorkspaceUrl] = value;