Condividi tramite


UserDataAccountStore.CreateAccountAsync Metodo

Definizione

Overload

CreateAccountAsync(String)

Crea in modo asincrono un account dati utente, specificando un nome utente visualizzabile.

CreateAccountAsync(String, String)

Crea in modo asincrono un account dati utente, specificando un nome utente visualizzabile e un GUID che identifica l'app in Microsoft Store.

CreateAccountAsync(String, String, String)

Crea in modo asincrono un account dati utente, specificando un nome utente visualizzabile, un GUID che identifica l'app in Microsoft Store e l'identità aziendale associata all'account utente.

CreateAccountAsync(String)

Crea in modo asincrono un account dati utente, specificando un nome utente visualizzabile.

public:
 virtual IAsyncOperation<UserDataAccount ^> ^ CreateAccountAsync(Platform::String ^ userDisplayName) = CreateAccountAsync;
/// [Windows.Foundation.Metadata.RemoteAsync]
IAsyncOperation<UserDataAccount> CreateAccountAsync(winrt::hstring const& userDisplayName);
[Windows.Foundation.Metadata.RemoteAsync]
public IAsyncOperation<UserDataAccount> CreateAccountAsync(string userDisplayName);
function createAccountAsync(userDisplayName)
Public Function CreateAccountAsync (userDisplayName As String) As IAsyncOperation(Of UserDataAccount)

Parametri

userDisplayName
String

Platform::String

winrt::hstring

Stringa contenente il nome utente adatto per la visualizzazione.

Restituisce

Restituisce il valore UserDataAccount appena creato.

Attributi

Vedi anche

Si applica a

CreateAccountAsync(String, String)

Crea in modo asincrono un account dati utente, specificando un nome utente visualizzabile e un GUID che identifica l'app in Microsoft Store.

public:
 virtual IAsyncOperation<UserDataAccount ^> ^ CreateAccountAsync(Platform::String ^ userDisplayName, Platform::String ^ packageRelativeAppId) = CreateAccountAsync;
/// [Windows.Foundation.Metadata.Overload("CreateAccountWithPackageRelativeAppIdAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
IAsyncOperation<UserDataAccount> CreateAccountAsync(winrt::hstring const& userDisplayName, winrt::hstring const& packageRelativeAppId);
[Windows.Foundation.Metadata.Overload("CreateAccountWithPackageRelativeAppIdAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public IAsyncOperation<UserDataAccount> CreateAccountAsync(string userDisplayName, string packageRelativeAppId);
function createAccountAsync(userDisplayName, packageRelativeAppId)
Public Function CreateAccountAsync (userDisplayName As String, packageRelativeAppId As String) As IAsyncOperation(Of UserDataAccount)

Parametri

userDisplayName
String

Platform::String

winrt::hstring

Stringa contenente il nome utente adatto per la visualizzazione.

packageRelativeAppId
String

Platform::String

winrt::hstring

GUID che identifica l'app in Microsoft Store.

Restituisce

Restituisce il valore UserDataAccount appena creato.

Attributi

Requisiti Windows

Famiglia di dispositivi
Windows 10 Anniversary Edition (è stato introdotto in 10.0.14393.0)
API contract
Windows.Foundation.UniversalApiContract (è stato introdotto in v3.0)

Vedi anche

Si applica a

CreateAccountAsync(String, String, String)

Crea in modo asincrono un account dati utente, specificando un nome utente visualizzabile, un GUID che identifica l'app in Microsoft Store e l'identità aziendale associata all'account utente.

public:
 virtual IAsyncOperation<UserDataAccount ^> ^ CreateAccountAsync(Platform::String ^ userDisplayName, Platform::String ^ packageRelativeAppId, Platform::String ^ enterpriseId) = CreateAccountAsync;
/// [Windows.Foundation.Metadata.Overload("CreateAccountWithPackageRelativeAppIdAndEnterpriseIdAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
IAsyncOperation<UserDataAccount> CreateAccountAsync(winrt::hstring const& userDisplayName, winrt::hstring const& packageRelativeAppId, winrt::hstring const& enterpriseId);
[Windows.Foundation.Metadata.Overload("CreateAccountWithPackageRelativeAppIdAndEnterpriseIdAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public IAsyncOperation<UserDataAccount> CreateAccountAsync(string userDisplayName, string packageRelativeAppId, string enterpriseId);
function createAccountAsync(userDisplayName, packageRelativeAppId, enterpriseId)
Public Function CreateAccountAsync (userDisplayName As String, packageRelativeAppId As String, enterpriseId As String) As IAsyncOperation(Of UserDataAccount)

Parametri

userDisplayName
String

Platform::String

winrt::hstring

Stringa contenente il nome utente adatto per la visualizzazione.

packageRelativeAppId
String

Platform::String

winrt::hstring

GUID che identifica l'app in Microsoft Store.

enterpriseId
String

Platform::String

winrt::hstring

Identità aziendale associata all'account dati utente.

Restituisce

Restituisce il valore UserDataAccount appena creato.

Attributi

Requisiti Windows

Famiglia di dispositivi
Windows 10 Creators Update (è stato introdotto in 10.0.15063.0)
API contract
Windows.Foundation.UniversalApiContract (è stato introdotto in v4.0)

Vedi anche

Si applica a