AppointmentStoreChangeReader
AppointmentStoreChangeReader
AppointmentStoreChangeReader
AppointmentStoreChangeReader
Class
Definition
Enables the calling app to read through the changes to appointments in its appointment store.
public : sealed class AppointmentStoreChangeReader : IAppointmentStoreChangeReaderpublic sealed class AppointmentStoreChangeReader : IAppointmentStoreChangeReaderPublic NotInheritable Class AppointmentStoreChangeReader Implements IAppointmentStoreChangeReader// You can use this class in JavaScript.
- Attributes
Windows 10 requirements
| Device family |
Windows 10 (introduced v10.0.10240.0)
|
| API contract |
Windows.Foundation.UniversalApiContract (introduced v1)
|
Methods
AcceptChanges() AcceptChanges() AcceptChanges() AcceptChanges()
Tells the system that all of the changes to appointments returned by the call to ReadBatchAsync have been addressed by the app.
public : void AcceptChanges()public void AcceptChanges()Public Function AcceptChanges() As void// You can use this method in JavaScript.
AcceptChangesThrough(AppointmentStoreChange) AcceptChangesThrough(AppointmentStoreChange) AcceptChangesThrough(AppointmentStoreChange) AcceptChangesThrough(AppointmentStoreChange)
Tells the system that all of the changes to appointments returned by the call to ReadBatchAsync, up to the specified AppointmentStoreChange, have been addressed by the app.
public : void AcceptChangesThrough(AppointmentStoreChange lastChangeToAccept)public void AcceptChangesThrough(AppointmentStoreChange lastChangeToAccept)Public Function AcceptChangesThrough(lastChangeToAccept As AppointmentStoreChange) As void// You can use this method in JavaScript.
Parameters
- lastChangeToAccept
- AppointmentStoreChange AppointmentStoreChange AppointmentStoreChange AppointmentStoreChange
The AppointmentStoreChange object indicating the latest change that has been addressed by the app.
ReadBatchAsync() ReadBatchAsync() ReadBatchAsync() ReadBatchAsync()
Returns a list of the changes that have occurred in the appointment store that have not yet been accepted by the calling app.
public : IAsyncOperation<IVectorView<AppointmentStoreChange>> ReadBatchAsync()public IAsyncOperation<IReadOnlyList<AppointmentStoreChange>> ReadBatchAsync()Public Function ReadBatchAsync() As IAsyncOperation( Of IReadOnlyListAppointmentStoreChange )// You can use this method in JavaScript.
Returns
IAsyncOperation<IVectorView<AppointmentStoreChange>>
IAsyncOperation<IReadOnlyList<AppointmentStoreChange>>
IAsyncOperation<IReadOnlyList<AppointmentStoreChange>>
IAsyncOperation<IReadOnlyList<AppointmentStoreChange>>
An asynchronous operation that returns an IVectorView upon successful completion.