| File: System\DirectoryServices\AccountManagement\ContextType.cs | Web Access |
| Project: src\src\runtime\src\libraries\System.DirectoryServices.AccountManagement\src\System.DirectoryServices.AccountManagement.csproj (System.DirectoryServices.AccountManagement) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. using System; namespace System.DirectoryServices.AccountManagement { public enum ContextType { Machine = 0, Domain = 1, #if TESTHOOK ApplicationDirectory = 2, Test = 3 #else ApplicationDirectory = 2 #endif // TESTHOOK } } |