AppointmentStore.FindAppointmentCalendarsAsync Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
FindAppointmentCalendarsAsync() |
Retrieves a list of all of the appointment calendars in the appointment store. |
FindAppointmentCalendarsAsync(FindAppointmentCalendarsOptions) |
Retrieves a list of appointment calendars in the appointment store that meet the criteria specified by the supplied FindAppointmentCalendarsOptions object.. |
FindAppointmentCalendarsAsync()
Retrieves a list of all of the appointment calendars in the appointment store.
public:
virtual IAsyncOperation<IVectorView<AppointmentCalendar ^> ^> ^ FindAppointmentCalendarsAsync() = FindAppointmentCalendarsAsync;
/// [Windows.Foundation.Metadata.Overload("FindAppointmentCalendarsAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
IAsyncOperation<IVectorView<AppointmentCalendar>> FindAppointmentCalendarsAsync();
[Windows.Foundation.Metadata.Overload("FindAppointmentCalendarsAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public IAsyncOperation<IReadOnlyList<AppointmentCalendar>> FindAppointmentCalendarsAsync();
function findAppointmentCalendarsAsync()
Public Function FindAppointmentCalendarsAsync () As IAsyncOperation(Of IReadOnlyList(Of AppointmentCalendar))
Returns
An asynchronous operation that returns an IVectorView upon successful completion.
- Attributes
Windows requirements
App capabilities |
appointmentsSystem
|
See also
Applies to
FindAppointmentCalendarsAsync(FindAppointmentCalendarsOptions)
Retrieves a list of appointment calendars in the appointment store that meet the criteria specified by the supplied FindAppointmentCalendarsOptions object..
public:
virtual IAsyncOperation<IVectorView<AppointmentCalendar ^> ^> ^ FindAppointmentCalendarsAsync(FindAppointmentCalendarsOptions options) = FindAppointmentCalendarsAsync;
/// [Windows.Foundation.Metadata.Overload("FindAppointmentCalendarsAsyncWithOptions")]
/// [Windows.Foundation.Metadata.RemoteAsync]
IAsyncOperation<IVectorView<AppointmentCalendar>> FindAppointmentCalendarsAsync(FindAppointmentCalendarsOptions const& options);
[Windows.Foundation.Metadata.Overload("FindAppointmentCalendarsAsyncWithOptions")]
[Windows.Foundation.Metadata.RemoteAsync]
public IAsyncOperation<IReadOnlyList<AppointmentCalendar>> FindAppointmentCalendarsAsync(FindAppointmentCalendarsOptions options);
function findAppointmentCalendarsAsync(options)
Public Function FindAppointmentCalendarsAsync (options As FindAppointmentCalendarsOptions) As IAsyncOperation(Of IReadOnlyList(Of AppointmentCalendar))
Parameters
- options
- FindAppointmentCalendarsOptions
The object that specifies the criteria that determines which appointment calendars are returned.
Returns
An asynchronous operation that returns an IVectorView upon successful completion.
- Attributes
Windows requirements
App capabilities |
appointmentsSystem
|