1 // Licensed to the .NET Foundation under one or more agreements.
2 // The .NET Foundation licenses this file to you under the MIT license.
3 // See the LICENSE file in the project root for more information.
4 
5 namespace System.Security.Permissions
6 {
7     [Flags]
8     public enum RegistryPermissionAccess
9     {
10         AllAccess = 7,
11         Create = 4,
12         NoAccess = 0,
13         Read = 1,
14         Write = 2,
15     }
16 }
17