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