AppointmentManager.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:
 static IAsyncAction ^ ShowAppointmentDetailsAsync(Platform::String ^ appointmentId);
/// [Windows.Foundation.Metadata.Overload("ShowAppointmentDetailsAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
 static IAsyncAction ShowAppointmentDetailsAsync(winrt::hstring const& appointmentId);
[Windows.Foundation.Metadata.Overload("ShowAppointmentDetailsAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public static IAsyncAction ShowAppointmentDetailsAsync(string appointmentId);
function showAppointmentDetailsAsync(appointmentId)
Public Shared Function ShowAppointmentDetailsAsync (appointmentId As String) As IAsyncAction

Parameters

appointmentId
String

Platform::String

winrt::hstring

The LocalId of the appointment to be displayed.

Returns

When this method returns, it does not return a result. On completion, the AsyncActionCompletedHandler specified by get_Completed / Completed is invoked.

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:
 static IAsyncAction ^ ShowAppointmentDetailsAsync(Platform::String ^ appointmentId, DateTime instanceStartDate);
/// [Windows.Foundation.Metadata.Overload("ShowAppointmentDetailsWithDateAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
 static IAsyncAction ShowAppointmentDetailsAsync(winrt::hstring const& appointmentId, DateTime const& instanceStartDate);
[Windows.Foundation.Metadata.Overload("ShowAppointmentDetailsWithDateAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public static IAsyncAction ShowAppointmentDetailsAsync(string appointmentId, System.DateTimeOffset instanceStartDate);
function showAppointmentDetailsAsync(appointmentId, instanceStartDate)
Public Shared Function ShowAppointmentDetailsAsync (appointmentId As String, instanceStartDate As DateTimeOffset) As IAsyncAction

Parameters

appointmentId
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.

Returns

When this method returns, it does not return a result. On completion, the AsyncActionCompletedHandler specified by get_Completed / Completed is invoked.

Attributes

Windows requirements

App capabilities
appointmentsSystem

See also

Applies to