AppointmentStore.CreateAppointmentCalendarAsync Method

Definition

Overloads

CreateAppointmentCalendarAsync(String)

Asynchronously creates a new AppointmentCalendar within the appointment store using the specified parameters.

CreateAppointmentCalendarAsync(String, String)

Asynchronously creates a new AppointmentCalendar within the appointment store with the specified name and user data account ID.

CreateAppointmentCalendarAsync(String)

Asynchronously creates a new AppointmentCalendar within the appointment store using the specified parameters.

public:
 virtual IAsyncOperation<AppointmentCalendar ^> ^ CreateAppointmentCalendarAsync(Platform::String ^ name) = CreateAppointmentCalendarAsync;
/// [Windows.Foundation.Metadata.RemoteAsync]
IAsyncOperation<AppointmentCalendar> CreateAppointmentCalendarAsync(winrt::hstring const& name);
[Windows.Foundation.Metadata.RemoteAsync]
public IAsyncOperation<AppointmentCalendar> CreateAppointmentCalendarAsync(string name);
function createAppointmentCalendarAsync(name)
Public Function CreateAppointmentCalendarAsync (name As String) As IAsyncOperation(Of AppointmentCalendar)

Parameters

name
String

Platform::String

winrt::hstring

The name for the new AppointmentCalendar.

Returns

An async operation that provides access to the newly created AppointmentCalendar.

Attributes

Windows requirements

App capabilities
appointmentsSystem

See also

Applies to

CreateAppointmentCalendarAsync(String, String)

Asynchronously creates a new AppointmentCalendar within the appointment store with the specified name and user data account ID.

public:
 virtual IAsyncOperation<AppointmentCalendar ^> ^ CreateAppointmentCalendarAsync(Platform::String ^ name, Platform::String ^ userDataAccountId) = CreateAppointmentCalendarAsync;
/// [Windows.Foundation.Metadata.Overload("CreateAppointmentCalendarInAccountAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
IAsyncOperation<AppointmentCalendar> CreateAppointmentCalendarAsync(winrt::hstring const& name, winrt::hstring const& userDataAccountId);
[Windows.Foundation.Metadata.Overload("CreateAppointmentCalendarInAccountAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public IAsyncOperation<AppointmentCalendar> CreateAppointmentCalendarAsync(string name, string userDataAccountId);
function createAppointmentCalendarAsync(name, userDataAccountId)
Public Function CreateAppointmentCalendarAsync (name As String, userDataAccountId As String) As IAsyncOperation(Of AppointmentCalendar)

Parameters

name
String

Platform::String

winrt::hstring

The name for the new AppointmentCalendar.

userDataAccountId
String

Platform::String

winrt::hstring

The identifier for the user data account used to create the AppointmentCalendar.

Returns

An async operation that provides access to the newly created AppointmentCalendar.

Attributes

Windows requirements

App capabilities
appointmentsSystem

See also

Applies to