UserIdentity 클래스
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
사용자와 연결된 ID, 티켓 및 기타 정보를 포함합니다.
참고
Windows 10 이상용으로 개발하는 경우 Windows.Security.Authentication.Web.Core API를 대신 사용합니다. 자세한 내용은 웹 계정 관리자를 참조하세요.
public ref class UserIdentity sealed
/// [Windows.Foundation.Metadata.ContractVersion(Windows.Foundation.UniversalApiContract, 65536)]
/// [Windows.Foundation.Metadata.MarshalingBehavior(Windows.Foundation.Metadata.MarshalingType.Agile)]
class UserIdentity final
[Windows.Foundation.Metadata.ContractVersion(typeof(Windows.Foundation.UniversalApiContract), 65536)]
[Windows.Foundation.Metadata.MarshalingBehavior(Windows.Foundation.Metadata.MarshalingType.Agile)]
public sealed class UserIdentity
Public NotInheritable Class UserIdentity
- 상속
- 특성
Windows 요구 사항
디바이스 패밀리 |
Windows 10 (10.0.10240.0에서 도입되었습니다.)
|
API contract |
Windows.Foundation.UniversalApiContract (v1.0에서 도입되었습니다.)
|
예제
List<OnlineIdServiceTicketRequest> targetArray = new List<OnlineIdServiceTicketRequest>();
targetArray.Add(new OnlineIdServiceTicketRequest("wl.basic wl.contacts_photos wl.calendars",
"DELEGATION"));
DebugPrint("Signing in ...");
Windows.Security.Authentication.OnlineId.UserIdentity result =
await _authenticator.AuthenticateUserAsync(targetArray, CredentialPromptType.PromptIfNeeded);
if (result.Tickets[0].Value != string.Empty)
{
DebugPrint("Signed in.");
IsNotSignedIn = false;
}
else
{
// Handle errors like bad parameter, misconfigured target, and so on.
DebugPrint("Unable to get the ticket. Error: " + result.Tickets[0].ErrorCode.ToString());
IsNotSignedIn = true;
}
속성
FirstName |
사용자의 이름을 포함합니다. 이 값은 Microsoft 애플리케이션 파트너만 사용할 수 있습니다. 참고 Windows 10 이상용으로 개발하는 경우 Windows.Security.Authentication.Web.Core API를 대신 사용합니다. 자세한 내용은 웹 계정 관리자를 참조하세요. |
Id |
사용자의 고유한 Microsoft 계정 식별자를 가져옵니다. 이 값은 Microsoft 애플리케이션 파트너만 사용할 수 있습니다. 참고 Windows 10 이상용으로 개발하는 경우 Windows.Security.Authentication.Web.Core API를 대신 사용합니다. 자세한 내용은 웹 계정 관리자를 참조하세요. |
IsBetaAccount |
사용자가 베타 프로그램의 일부인지를 나타냅니다. 이 값은 Microsoft 애플리케이션 파트너만 사용할 수 있습니다. 참고 Windows 10 이상용으로 개발하는 경우 Windows.Security.Authentication.Web.Core API를 대신 사용합니다. 자세한 내용은 웹 계정 관리자를 참조하세요. |
IsConfirmedPC |
사용자가 자신의 PC로 확인한 PC에 있는지를 나타냅니다. 이 값은 Microsoft 애플리케이션 파트너만 사용할 수 있습니다. 참고 Windows 10 이상용으로 개발하는 경우 Windows.Security.Authentication.Web.Core API를 대신 사용합니다. 자세한 내용은 웹 계정 관리자를 참조하세요. |
LastName |
사용자의 성을 포함합니다. 이 값은 Microsoft 애플리케이션 파트너만 사용할 수 있습니다. 참고 Windows 10 이상용으로 개발하는 경우 Windows.Security.Authentication.Web.Core API를 대신 사용합니다. 자세한 내용은 웹 계정 관리자를 참조하세요. |
SafeCustomerId |
호출 애플리케이션과 관련된 난독 처리를 한 고객 ID를 가져옵니다. 이 ID를 사용하면 각 애플리케이션이 동일한 Microsoft 계정에 대해 고유한 SafeCustomerId 값을 받기 때문에 애플리케이션에서 세션 간에 사용자를 식별할 수 있지만 별도의 애플리케이션 간에 데이터를 공유하는 데 사용할 수 없습니다. 참고 Windows 10 이상용으로 개발하는 경우 Windows.Security.Authentication.Web.Core API를 대신 사용합니다. 자세한 내용은 웹 계정 관리자를 참조하세요. |
SignInName |
사용자의 로그인 이름입니다. 이 값은 Microsoft 애플리케이션 파트너만 사용할 수 있습니다. 참고 Windows 10 이상용으로 개발하는 경우 Windows.Security.Authentication.Web.Core API를 대신 사용합니다. 자세한 내용은 웹 계정 관리자를 참조하세요. |
Tickets |
사용자를 식별하는 티켓 배열을 포함합니다. 앱에서 JWT 정책을 사용하는 경우 하나의 티켓만 반환됩니다. 이 값은 Microsoft 애플리케이션 파트너만 사용할 수 있습니다. 참고 Windows 10 이상용으로 개발하는 경우 Windows.Security.Authentication.Web.Core API를 대신 사용합니다. 자세한 내용은 웹 계정 관리자를 참조하세요. |