다음을 통해 공유


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에서 도입되었습니다.)

추가 정보

적용 대상