20 lines
1.3 KiB
C#
20 lines
1.3 KiB
C#
using System;
|
|
|
|
namespace Microsoft.Win32
|
|
{
|
|
/// <summary>Specifies whether security checks are performed when opening registry keys and accessing their name/value pairs.</summary>
|
|
// Token: 0x02000076 RID: 118
|
|
public enum RegistryKeyPermissionCheck
|
|
{
|
|
/// <summary>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 <see cref="F:Microsoft.Win32.RegistryKeyPermissionCheck.ReadSubTree" /> or <see cref="F:Microsoft.Win32.RegistryKeyPermissionCheck.ReadWriteSubTree" /> mode.</summary>
|
|
// Token: 0x040000F3 RID: 243
|
|
Default,
|
|
/// <summary>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 <see cref="F:Microsoft.Win32.RegistryKeyPermissionCheck.ReadSubTree" /> or <see cref="F:Microsoft.Win32.RegistryKeyPermissionCheck.ReadWriteSubTree" />.</summary>
|
|
// Token: 0x040000F4 RID: 244
|
|
ReadSubTree,
|
|
/// <summary>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 <see cref="F:Microsoft.Win32.RegistryKeyPermissionCheck.ReadWriteSubTree" />.</summary>
|
|
// Token: 0x040000F5 RID: 245
|
|
ReadWriteSubTree
|
|
}
|
|
}
|