UserDataTaskStore.CreateListAsync 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
CreateListAsync(String) |
Asynchronously creates a UserDataTaskList with the specified name. |
CreateListAsync(String, String) |
Asynchronously creates a UserDataTaskList with the specified name. |
CreateListAsync(String)
Asynchronously creates a UserDataTaskList with the specified name.
public:
virtual IAsyncOperation<UserDataTaskList ^> ^ CreateListAsync(Platform::String ^ name) = CreateListAsync;
/// [Windows.Foundation.Metadata.Overload("CreateListAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
IAsyncOperation<UserDataTaskList> CreateListAsync(winrt::hstring const& name);
[Windows.Foundation.Metadata.Overload("CreateListAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public IAsyncOperation<UserDataTaskList> CreateListAsync(string name);
function createListAsync(name)
Public Function CreateListAsync (name As String) As IAsyncOperation(Of UserDataTaskList)
Parameters
- name
-
String
Platform::String
winrt::hstring
A name for the new UserDataTaskList.
Returns
The newly created UserDataTaskList.
- Attributes
Applies to
CreateListAsync(String, String)
Asynchronously creates a UserDataTaskList with the specified name.
public:
virtual IAsyncOperation<UserDataTaskList ^> ^ CreateListAsync(Platform::String ^ name, Platform::String ^ userDataAccountId) = CreateListAsync;
/// [Windows.Foundation.Metadata.Overload("CreateListInAccountAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
IAsyncOperation<UserDataTaskList> CreateListAsync(winrt::hstring const& name, winrt::hstring const& userDataAccountId);
[Windows.Foundation.Metadata.Overload("CreateListInAccountAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public IAsyncOperation<UserDataTaskList> CreateListAsync(string name, string userDataAccountId);
function createListAsync(name, userDataAccountId)
Public Function CreateListAsync (name As String, userDataAccountId As String) As IAsyncOperation(Of UserDataTaskList)
Parameters
- name
-
String
Platform::String
winrt::hstring
A name for the new UserDataTaskList.
- userDataAccountId
-
String
Platform::String
winrt::hstring
The ID for the UserDataAccount to use when creating the UserDataTaskList.
Returns
- Attributes