| File: System\DirectoryServices\ActiveDirectory\RoleOwner.cs | Web Access |
| Project: src\src\runtime\src\libraries\System.DirectoryServices\src\System.DirectoryServices.csproj (System.DirectoryServices) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. namespace System.DirectoryServices.ActiveDirectory { public enum ActiveDirectoryRole : int { SchemaRole = 0, NamingRole = 1, PdcRole = 2, RidRole = 3, InfrastructureRole = 4 } public enum AdamRole : int { SchemaRole = 0, NamingRole = 1 } } |