Files
Dec2017-Script-Dump/mscorlib/Microsoft/Win32/RegistryHive.cs
T
2026-06-04 11:42:34 +02:00

35 lines
2.5 KiB
C#

using System;
using System.Runtime.InteropServices;
namespace Microsoft.Win32
{
/// <summary>Represents the possible values for a top-level node on a foreign machine.</summary>
// Token: 0x02000074 RID: 116
[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: 0x040000E5 RID: 229
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: 0x040000E6 RID: 230
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: 0x040000E7 RID: 231
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: 0x040000E8 RID: 232
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: 0x040000E9 RID: 233
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: 0x040000EA RID: 234
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: 0x040000EB RID: 235
Users = -2147483645
}
}