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