AppointmentCalendar.FindUnexpandedAppointmentsAsync Method

Definition

Overloads

FindUnexpandedAppointmentsAsync()

Asynchronously retrieves a list of appointments that meet the specified criteria.

FindUnexpandedAppointmentsAsync(FindAppointmentsOptions)

Asynchronously retrieves a list of appointments that meet the specified criteria.

FindUnexpandedAppointmentsAsync()

Asynchronously retrieves a list of appointments that meet the specified criteria.

public:
 virtual IAsyncOperation<IVectorView<Appointment ^> ^> ^ FindUnexpandedAppointmentsAsync() = FindUnexpandedAppointmentsAsync;
/// [Windows.Foundation.Metadata.Overload("FindUnexpandedAppointmentsAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
IAsyncOperation<IVectorView<Appointment>> FindUnexpandedAppointmentsAsync();
[Windows.Foundation.Metadata.Overload("FindUnexpandedAppointmentsAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public IAsyncOperation<IReadOnlyList<Appointment>> FindUnexpandedAppointmentsAsync();
function findUnexpandedAppointmentsAsync()
Public Function FindUnexpandedAppointmentsAsync () As IAsyncOperation(Of IReadOnlyList(Of Appointment))

Returns

An asynchronous operation that returns IVectorView on successful completion.

Attributes

Windows requirements

App capabilities
appointmentsSystem

See also

Applies to

FindUnexpandedAppointmentsAsync(FindAppointmentsOptions)

Asynchronously retrieves a list of appointments that meet the specified criteria.

public:
 virtual IAsyncOperation<IVectorView<Appointment ^> ^> ^ FindUnexpandedAppointmentsAsync(FindAppointmentsOptions ^ options) = FindUnexpandedAppointmentsAsync;
/// [Windows.Foundation.Metadata.Overload("FindUnexpandedAppointmentsAsyncWithOptions")]
IAsyncOperation<IVectorView<Appointment>> FindUnexpandedAppointmentsAsync(FindAppointmentsOptions const& options);
[Windows.Foundation.Metadata.Overload("FindUnexpandedAppointmentsAsyncWithOptions")]
public IAsyncOperation<IReadOnlyList<Appointment>> FindUnexpandedAppointmentsAsync(FindAppointmentsOptions options);
function findUnexpandedAppointmentsAsync(options)
Public Function FindUnexpandedAppointmentsAsync (options As FindAppointmentsOptions) As IAsyncOperation(Of IReadOnlyList(Of Appointment))

Parameters

options
FindAppointmentsOptions

A FindAppointmentsOptions object that is used to specify more options for this operation.

Returns

An asynchronous operation that returns IVectorView on successful completion.

Attributes

Windows requirements

App capabilities
appointmentsSystem

See also

Applies to