using System;
namespace Microsoft.Win32
{
/// Specifies whether security checks are performed when opening registry keys and accessing their name/value pairs.
// Token: 0x02000076 RID: 118
public enum RegistryKeyPermissionCheck
{
/// The registry key inherits the mode of its parent. Security checks are performed when trying to access subkeys or values, unless the parent was opened with or mode.
// Token: 0x040000F3 RID: 243
Default,
/// Security checks are not performed when accessing subkeys or values. A security check is performed when trying to open the current key, unless the parent was opened with or .
// Token: 0x040000F4 RID: 244
ReadSubTree,
/// Security checks are not performed when accessing subkeys or values. A security check is performed when trying to open the current key, unless the parent was opened with .
// Token: 0x040000F5 RID: 245
ReadWriteSubTree
}
}