Files
niko 8fc35183db a
2026-04-11 22:19:20 +02:00

44 lines
2.7 KiB
C#

using System;
using System.Runtime.InteropServices;
using Cpp2IlInjected;
namespace Microsoft.Win32
{
/// <summary>Represents the possible values for a top-level node on a foreign machine.</summary>
// Token: 0x02000065 RID: 101
[Token(Token = "0x2000065")]
[ComVisible(true)]
[Serializable]
public enum RegistryHive
{
/// <summary>Represents the HKEY_CLASSES_ROOT base key on another computer. This value can be passed to the <see cref="M:Microsoft.Win32.RegistryKey.OpenRemoteBaseKey(Microsoft.Win32.RegistryHive,System.String)" /> method, to open this node remotely.</summary>
// Token: 0x04000189 RID: 393
[Token(Token = "0x4000189")]
ClassesRoot = -2147483648,
/// <summary>Represents the HKEY_CURRENT_CONFIG base key on another computer. This value can be passed to the <see cref="M:Microsoft.Win32.RegistryKey.OpenRemoteBaseKey(Microsoft.Win32.RegistryHive,System.String)" /> method, to open this node remotely.</summary>
// Token: 0x0400018A RID: 394
[Token(Token = "0x400018A")]
CurrentConfig = -2147483643,
/// <summary>Represents the HKEY_CURRENT_USER base key on another computer. This value can be passed to the <see cref="M:Microsoft.Win32.RegistryKey.OpenRemoteBaseKey(Microsoft.Win32.RegistryHive,System.String)" /> method, to open this node remotely.</summary>
// Token: 0x0400018B RID: 395
[Token(Token = "0x400018B")]
CurrentUser = -2147483647,
/// <summary>Represents the HKEY_DYN_DATA base key on another computer. This value can be passed to the <see cref="M:Microsoft.Win32.RegistryKey.OpenRemoteBaseKey(Microsoft.Win32.RegistryHive,System.String)" /> method, to open this node remotely.</summary>
// Token: 0x0400018C RID: 396
[Token(Token = "0x400018C")]
DynData = -2147483642,
/// <summary>Represents the HKEY_LOCAL_MACHINE base key on another computer. This value can be passed to the <see cref="M:Microsoft.Win32.RegistryKey.OpenRemoteBaseKey(Microsoft.Win32.RegistryHive,System.String)" /> method, to open this node remotely.</summary>
// Token: 0x0400018D RID: 397
[Token(Token = "0x400018D")]
LocalMachine = -2147483646,
/// <summary>Represents the HKEY_PERFORMANCE_DATA base key on another computer. This value can be passed to the <see cref="M:Microsoft.Win32.RegistryKey.OpenRemoteBaseKey(Microsoft.Win32.RegistryHive,System.String)" /> method, to open this node remotely.</summary>
// Token: 0x0400018E RID: 398
[Token(Token = "0x400018E")]
PerformanceData = -2147483644,
/// <summary>Represents the HKEY_USERS base key on another computer. This value can be passed to the <see cref="M:Microsoft.Win32.RegistryKey.OpenRemoteBaseKey(Microsoft.Win32.RegistryHive,System.String)" /> method, to open this node remotely.</summary>
// Token: 0x0400018F RID: 399
[Token(Token = "0x400018F")]
Users = -2147483645
}
}