AppointmentStore.ShowAppointmentDetailsAsync Method

Definition

Overloads

ShowAppointmentDetailsAsync(String)

Shows the Appointments provider Appointment Details UI, to enable the user to view the specified appointment.

ShowAppointmentDetailsAsync(String, DateTime)

Shows the Appointments provider Appointment Details UI, to enable the user to view the specified appointment.

ShowAppointmentDetailsAsync(String)

Shows the Appointments provider Appointment Details UI, to enable the user to view the specified appointment.

public:
 virtual IAsyncAction ^ ShowAppointmentDetailsAsync(Platform::String ^ localId) = ShowAppointmentDetailsAsync;
/// [Windows.Foundation.Metadata.Overload("ShowAppointmentDetailsAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
IAsyncAction ShowAppointmentDetailsAsync(winrt::hstring const& localId);
[Windows.Foundation.Metadata.Overload("ShowAppointmentDetailsAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public IAsyncAction ShowAppointmentDetailsAsync(string localId);
function showAppointmentDetailsAsync(localId)
Public Function ShowAppointmentDetailsAsync (localId As String) As IAsyncAction

Parameters

localId
String

Platform::String

winrt::hstring

The LocalId of the appointment to be displayed.

Returns

An asynchronous action.

Attributes

Windows requirements

App capabilities
appointmentsSystem

See also

Applies to

ShowAppointmentDetailsAsync(String, DateTime)

Shows the Appointments provider Appointment Details UI, to enable the user to view the specified appointment.

public:
 virtual IAsyncAction ^ ShowAppointmentDetailsAsync(Platform::String ^ localId, DateTime instanceStartDate) = ShowAppointmentDetailsAsync;
/// [Windows.Foundation.Metadata.Overload("ShowAppointmentDetailsWithDateAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
IAsyncAction ShowAppointmentDetailsAsync(winrt::hstring const& localId, DateTime const& instanceStartDate);
[Windows.Foundation.Metadata.Overload("ShowAppointmentDetailsWithDateAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public IAsyncAction ShowAppointmentDetailsAsync(string localId, System.DateTimeOffset instanceStartDate);
function showAppointmentDetailsAsync(localId, instanceStartDate)
Public Function ShowAppointmentDetailsAsync (localId As String, instanceStartDate As DateTimeOffset) As IAsyncAction

Parameters

localId
String

Platform::String

winrt::hstring

The LocalId of the appointment to be displayed.

instanceStartDate
DateTime DateTimeOffset

A DateTime object with the start time of the appointment instance to be displayed. This parameter must be the original start date of the instance.

Returns

An asynchronous action.

Attributes

Windows requirements

App capabilities
appointmentsSystem

See also

Applies to