AppointmentStore.FindAppointmentCalendarsAsync 方法

定义

重载

FindAppointmentCalendarsAsync()

检索约会存储中所有约会日历的列表。

FindAppointmentCalendarsAsync(FindAppointmentCalendarsOptions)

检索约会存储区中符合提供的 FindAppointmentCalendarsOptions 对象指定的条件的约会日历列表。

FindAppointmentCalendarsAsync()

检索约会存储中所有约会日历的列表。

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))

返回

成功完成后返回 IVectorView 的异步操作。

属性

Windows 要求

应用功能
appointmentsSystem

另请参阅

适用于

FindAppointmentCalendarsAsync(FindAppointmentCalendarsOptions)

检索约会存储区中符合提供的 FindAppointmentCalendarsOptions 对象指定的条件的约会日历列表。

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))

参数

options
FindAppointmentCalendarsOptions

一个 对象,该对象指定用于确定返回哪些约会日历的条件。

返回

成功完成后返回 IVectorView 的异步操作。

属性

Windows 要求

应用功能
appointmentsSystem

另请参阅

适用于