次の方法で共有


UserDataAccountStore.CreateAccountAsync メソッド

定義

オーバーロード

CreateAccountAsync(String)

表示可能なユーザー名を指定して、ユーザー データ アカウントを非同期に作成します。

CreateAccountAsync(String, String)

表示可能なユーザー名と、Microsoft Store 内のアプリを識別する GUID を 指定して、ユーザー データ アカウントを非同期に作成します。

CreateAccountAsync(String, String, String)

表示可能なユーザー名、Microsoft Store 内のアプリを識別する GUID、およびユーザー アカウントに関連付けられているエンタープライズ ID 指定して、ユーザー データ アカウントを非同期に作成します。

CreateAccountAsync(String)

表示可能なユーザー名を指定して、ユーザー データ アカウントを非同期に作成します。

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)

パラメーター

userDisplayName
String

Platform::String

winrt::hstring

表示に適したユーザー名を含む文字列。

戻り値

新しく作成された UserDataAccount を返します

属性

こちらもご覧ください

適用対象

CreateAccountAsync(String, String)

表示可能なユーザー名と、Microsoft Store 内のアプリを識別する GUID を 指定して、ユーザー データ アカウントを非同期に作成します。

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)

パラメーター

userDisplayName
String

Platform::String

winrt::hstring

表示に適したユーザー名を含む文字列。

packageRelativeAppId
String

Platform::String

winrt::hstring

Microsoft Store 内のアプリを識別する GUID

戻り値

新しく作成された UserDataAccount を返します

属性

Windows の要件

デバイス ファミリ
Windows 10 Anniversary Edition (10.0.14393.0 で導入)
API contract
Windows.Foundation.UniversalApiContract (v3.0 で導入)

こちらもご覧ください

適用対象

CreateAccountAsync(String, String, String)

表示可能なユーザー名、Microsoft Store 内のアプリを識別する GUID、およびユーザー アカウントに関連付けられているエンタープライズ ID 指定して、ユーザー データ アカウントを非同期に作成します。

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)

パラメーター

userDisplayName
String

Platform::String

winrt::hstring

表示に適したユーザー名を含む文字列。

packageRelativeAppId
String

Platform::String

winrt::hstring

Microsoft Store 内のアプリを識別する GUID

enterpriseId
String

Platform::String

winrt::hstring

ユーザー データ アカウントに関連付けられているエンタープライズ ID。

戻り値

新しく作成された UserDataAccount を返します

属性

Windows の要件

デバイス ファミリ
Windows 10 Creators Update (10.0.15063.0 で導入)
API contract
Windows.Foundation.UniversalApiContract (v4.0 で導入)

こちらもご覧ください

適用対象