AppointmentStore.FindAppointmentCalendarsAsync 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
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
|