UserDataAccountStore.CreateAccountAsync Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Surcharges
CreateAccountAsync(String) |
Crée de manière asynchrone un compte de données utilisateur, en spécifiant un nom d’utilisateur pouvant être affiché. |
CreateAccountAsync(String, String) |
Crée de manière asynchrone un compte de données utilisateur, en spécifiant un nom d’utilisateur pouvant être affiché et un GUID qui identifie l’application dans le Microsoft Store. |
CreateAccountAsync(String, String, String) |
Crée de manière asynchrone un compte de données utilisateur, en spécifiant un nom d’utilisateur pouvant être affiché, un GUID qui identifie l’application dans le Microsoft Store et l’identité d’entreprise associée au compte d’utilisateur. |
CreateAccountAsync(String)
Crée de manière asynchrone un compte de données utilisateur, en spécifiant un nom d’utilisateur pouvant être affiché.
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)
Paramètres
- userDisplayName
-
String
Platform::String
winrt::hstring
Chaîne contenant le nom d’utilisateur approprié pour l’affichage.
Retours
Retourne le userDataAccount nouvellement créé.
- Attributs
Voir aussi
S’applique à
CreateAccountAsync(String, String)
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)
Paramètres
- userDisplayName
-
String
Platform::String
winrt::hstring
Chaîne contenant le nom d’utilisateur approprié pour l’affichage.
- packageRelativeAppId
-
String
Platform::String
winrt::hstring
GUID qui identifie l’application dans le Microsoft Store.
Retours
Retourne le userDataAccount nouvellement créé.
- Attributs
Configuration requise pour Windows
Famille d’appareils |
Windows 10 Anniversary Edition (introduit dans 10.0.14393.0)
|
API contract |
Windows.Foundation.UniversalApiContract (introduit dans v3.0)
|
Voir aussi
S’applique à
CreateAccountAsync(String, String, String)
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)
Paramètres
- userDisplayName
-
String
Platform::String
winrt::hstring
Chaîne contenant le nom d’utilisateur approprié pour l’affichage.
- packageRelativeAppId
-
String
Platform::String
winrt::hstring
GUID qui identifie l’application dans le Microsoft Store.
- enterpriseId
-
String
Platform::String
winrt::hstring
Identité d’entreprise associée au compte de données utilisateur.
Retours
Retourne le userDataAccount nouvellement créé.
- Attributs
Configuration requise pour Windows
Famille d’appareils |
Windows 10 Creators Update (introduit dans 10.0.15063.0)
|
API contract |
Windows.Foundation.UniversalApiContract (introduit dans v4.0)
|