| File: MS\Internal\Documents\AccountType.cs | Web Access |
| Project: src\wpf\src\Microsoft.DotNet.Wpf\src\PresentationUI\PresentationUI.csproj (PresentationUI) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. namespace MS.Internal.Documents { /// <summary> /// The EnrollmentAccountType enum for the type of account to enroll. /// </summary> internal enum EnrollmentAccountType { /// <summary> /// No account type selected /// </summary> None, /// <summary> /// Represents a domain account /// </summary> Network, /// <summary> /// Represents a one-time use account /// </summary> Temporary, /// <summary> /// Represents a .NET Passport account /// </summary> NET } }