AppointmentManagerForUser.ShowAppointmentDetailsAsync Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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 ^ appointmentId) = ShowAppointmentDetailsAsync;
/// [Windows.Foundation.Metadata.Overload("ShowAppointmentDetailsAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
IAsyncAction ShowAppointmentDetailsAsync(winrt::hstring const& appointmentId);
[Windows.Foundation.Metadata.Overload("ShowAppointmentDetailsAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public IAsyncAction ShowAppointmentDetailsAsync(string appointmentId);
function showAppointmentDetailsAsync(appointmentId)
Public 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:
virtual IAsyncAction ^ ShowAppointmentDetailsAsync(Platform::String ^ appointmentId, DateTime instanceStartDate) = ShowAppointmentDetailsAsync;
/// [Windows.Foundation.Metadata.Overload("ShowAppointmentDetailsWithDateAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
IAsyncAction ShowAppointmentDetailsAsync(winrt::hstring const& appointmentId, DateTime const& instanceStartDate);
[Windows.Foundation.Metadata.Overload("ShowAppointmentDetailsWithDateAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public IAsyncAction ShowAppointmentDetailsAsync(string appointmentId, System.DateTimeOffset instanceStartDate);
function showAppointmentDetailsAsync(appointmentId, instanceStartDate)
Public 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
|