MeetingWorkspaceUrl property

String? get 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?;
set MeetingWorkspaceUrl (String? value)

Implementation

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