UserDataAccountStore.CreateAccountAsync メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
オーバーロード
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)
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
表示に適したユーザー名を含む文字列。
戻り値
新しく作成された UserDataAccount を返します。
- 属性
Windows の要件
デバイス ファミリ |
Windows 10 Anniversary Edition (10.0.14393.0 で導入)
|
API contract |
Windows.Foundation.UniversalApiContract (v3.0 で導入)
|
こちらもご覧ください
適用対象
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)
パラメーター
- userDisplayName
-
String
Platform::String
winrt::hstring
表示に適したユーザー名を含む文字列。
- enterpriseId
-
String
Platform::String
winrt::hstring
ユーザー データ アカウントに関連付けられているエンタープライズ ID。
戻り値
新しく作成された UserDataAccount を返します。
- 属性
Windows の要件
デバイス ファミリ |
Windows 10 Creators Update (10.0.15063.0 で導入)
|
API contract |
Windows.Foundation.UniversalApiContract (v4.0 で導入)
|