AppointmentCalendarCancelMeetingRequest
AppointmentCalendarCancelMeetingRequest
AppointmentCalendarCancelMeetingRequest
AppointmentCalendarCancelMeetingRequest
Class
Definition
Represents the user's request to cancel a calendar meeting.
public : sealed class AppointmentCalendarCancelMeetingRequest : IAppointmentCalendarCancelMeetingRequestpublic sealed class AppointmentCalendarCancelMeetingRequest : IAppointmentCalendarCancelMeetingRequestPublic NotInheritable Class AppointmentCalendarCancelMeetingRequest Implements IAppointmentCalendarCancelMeetingRequest// You can use this class in JavaScript.
- Attributes
| Device family |
Windows 10 Anniversary Edition (introduced v10.0.14393.0)
|
| API contract |
Windows.Foundation.UniversalApiContract (introduced v3)
|
Remarks
The system generates an instance of this class and sets it as a property in the AppointmentCalendarCancelMeetingRequestEventArgs argument of the CancelMeetingRequested event.
Properties
AppointmentCalendarLocalId AppointmentCalendarLocalId AppointmentCalendarLocalId AppointmentCalendarLocalId
Uniquely identifies the calendar on the local device.
public : PlatForm::String AppointmentCalendarLocalId { get; }public string AppointmentCalendarLocalId { get; }Public ReadOnly Property AppointmentCalendarLocalId As string// You can use this property in JavaScript.
- Value
- PlatForm::String string string string
A string that uniquely identifies the calendar on the local device.
AppointmentLocalId AppointmentLocalId AppointmentLocalId AppointmentLocalId
Gets a string that uniquely identifies the appointment on the local device.
public : PlatForm::String AppointmentLocalId { get; }public string AppointmentLocalId { get; }Public ReadOnly Property AppointmentLocalId As string// You can use this property in JavaScript.
- Value
- PlatForm::String string string string
A string that uniquely identifies the appointment on the local device.
AppointmentOriginalStartTime AppointmentOriginalStartTime AppointmentOriginalStartTime AppointmentOriginalStartTime
Gets the original starting time for a recurring appointment.
public : IReference<DateTime> AppointmentOriginalStartTime { get; }public Nullable<DateTimeOffset> AppointmentOriginalStartTime { get; }Public ReadOnly Property AppointmentOriginalStartTime As Nullable<DateTimeOffset>// You can use this property in JavaScript.
- Value
- IReference<DateTime> Nullable<DateTimeOffset> Nullable<DateTimeOffset> Nullable<DateTimeOffset>
The original starting time for a recurring appointment.
Comment Comment Comment Comment
Gets a text comment the user may write regarding the cancellation of the meeting.
public : PlatForm::String Comment { get; }public string Comment { get; }Public ReadOnly Property Comment As string// You can use this property in JavaScript.
- Value
- PlatForm::String string string string
A text comment by the user regarding the meeting cancellation.
NotifyInvitees NotifyInvitees NotifyInvitees NotifyInvitees
Gets a Boolean value indicating if invitees should be notified.
public : PlatForm::Boolean NotifyInvitees { get; }public bool NotifyInvitees { get; }Public ReadOnly Property NotifyInvitees As bool// You can use this property in JavaScript.
- Value
- PlatForm::Boolean bool bool bool
A Boolean value indicating if invitees should be notified.
Methods
ReportCompletedAsync() ReportCompletedAsync() ReportCompletedAsync() ReportCompletedAsync()
Notifies the system that the task of cancelling a meeting has completed.
public : IAsyncAction ReportCompletedAsync()public IAsyncAction ReportCompletedAsync()Public Function ReportCompletedAsync() As IAsyncAction// You can use this method in JavaScript.
An asynchronous operation.
Remarks
This method should be called only if the app has successfully pushed a meeting cancellation.
ReportFailedAsync() ReportFailedAsync() ReportFailedAsync() ReportFailedAsync()
Notifies the system that the task of cancelling a meeting has failed.
public : IAsyncAction ReportFailedAsync()public IAsyncAction ReportFailedAsync()Public Function ReportFailedAsync() As IAsyncAction// You can use this method in JavaScript.
An asynchronous operation.
Remarks
This method should be called only if the app has failed to push a meeting cancellation.