AppointmentStore.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 ^ 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
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
- 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
|