Share via


ContactStore.CreateContactListAsync Método

Definición

Sobrecargas

CreateContactListAsync(String)

Crea de forma asincrónica un objeto ContactList con el nombre para mostrar especificado.

CreateContactListAsync(String, String)

Crea de forma asincrónica un objeto ContactList con el nombre para mostrar y la cuenta de usuario especificados.

CreateContactListAsync(String)

Crea de forma asincrónica un objeto ContactList con el nombre para mostrar especificado.

public:
 virtual IAsyncOperation<ContactList ^> ^ CreateContactListAsync(Platform::String ^ displayName) = CreateContactListAsync;
/// [Windows.Foundation.Metadata.Overload("CreateContactListAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
IAsyncOperation<ContactList> CreateContactListAsync(winrt::hstring const& displayName);
[Windows.Foundation.Metadata.Overload("CreateContactListAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public IAsyncOperation<ContactList> CreateContactListAsync(string displayName);
function createContactListAsync(displayName)
Public Function CreateContactListAsync (displayName As String) As IAsyncOperation(Of ContactList)

Parámetros

displayName
String

Platform::String

winrt::hstring

Un nombre para el nuevo ContactList, adecuado para mostrarse en la interfaz de usuario.

Devoluciones

ContactList recién creado.

Atributos

Requisitos de Windows

Características de aplicaciones
contactsSystem

Consulte también

Se aplica a

CreateContactListAsync(String, String)

Crea de forma asincrónica un objeto ContactList con el nombre para mostrar y la cuenta de usuario especificados.

public:
 virtual IAsyncOperation<ContactList ^> ^ CreateContactListAsync(Platform::String ^ displayName, Platform::String ^ userDataAccountId) = CreateContactListAsync;
/// [Windows.Foundation.Metadata.Overload("CreateContactListInAccountAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
IAsyncOperation<ContactList> CreateContactListAsync(winrt::hstring const& displayName, winrt::hstring const& userDataAccountId);
[Windows.Foundation.Metadata.Overload("CreateContactListInAccountAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public IAsyncOperation<ContactList> CreateContactListAsync(string displayName, string userDataAccountId);
function createContactListAsync(displayName, userDataAccountId)
Public Function CreateContactListAsync (displayName As String, userDataAccountId As String) As IAsyncOperation(Of ContactList)

Parámetros

displayName
String

Platform::String

winrt::hstring

Un nombre para el nuevo ContactList, adecuado para mostrarse en la interfaz de usuario.

userDataAccountId
String

Platform::String

winrt::hstring

Identificador de UserDataAccount que se va a usar al crear contactList.

Devoluciones

ContactList recién creado.

Atributos

Requisitos de Windows

Características de aplicaciones
contactsSystem

Consulte también

Se aplica a