51 lines
2.5 KiB
C#
51 lines
2.5 KiB
C#
using System;
|
|
using System.Runtime.InteropServices;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace Microsoft.Win32
|
|
{
|
|
/// <summary>Provides <see cref="T:Microsoft.Win32.RegistryKey" /> objects that represent the root keys in the Windows registry, and <see langword="static" /> methods to access key/value pairs.</summary>
|
|
// Token: 0x02000064 RID: 100
|
|
[Token(Token = "0x2000064")]
|
|
[ComVisible(true)]
|
|
public static class Registry
|
|
{
|
|
/// <summary>Defines the types (or classes) of documents and the properties associated with those types. This field reads the Windows registry base key HKEY_CLASSES_ROOT.</summary>
|
|
// Token: 0x04000181 RID: 385
|
|
[Token(Token = "0x4000181")]
|
|
public static readonly RegistryKey ClassesRoot;
|
|
|
|
/// <summary>Contains configuration information pertaining to the hardware that is not specific to the user. This field reads the Windows registry base key HKEY_CURRENT_CONFIG.</summary>
|
|
// Token: 0x04000182 RID: 386
|
|
[Token(Token = "0x4000182")]
|
|
public static readonly RegistryKey CurrentConfig;
|
|
|
|
/// <summary>Contains information about the current user preferences. This field reads the Windows registry base key HKEY_CURRENT_USER.</summary>
|
|
// Token: 0x04000183 RID: 387
|
|
[Token(Token = "0x4000183")]
|
|
public static readonly RegistryKey CurrentUser;
|
|
|
|
/// <summary>Contains dynamic registry data. This field reads the Windows registry base key HKEY_DYN_DATA.</summary>
|
|
/// <exception cref="T:System.ObjectDisposedException">The operating system does not support dynamic data; that is, it is not Windows 98, Windows 98 Second Edition, or Windows Millennium Edition (Windows Me).</exception>
|
|
// Token: 0x04000184 RID: 388
|
|
[Token(Token = "0x4000184")]
|
|
[Obsolete]
|
|
public static readonly RegistryKey DynData;
|
|
|
|
/// <summary>Contains the configuration data for the local machine. This field reads the Windows registry base key HKEY_LOCAL_MACHINE.</summary>
|
|
// Token: 0x04000185 RID: 389
|
|
[Token(Token = "0x4000185")]
|
|
public static readonly RegistryKey LocalMachine;
|
|
|
|
/// <summary>Contains performance information for software components. This field reads the Windows registry base key HKEY_PERFORMANCE_DATA.</summary>
|
|
// Token: 0x04000186 RID: 390
|
|
[Token(Token = "0x4000186")]
|
|
public static readonly RegistryKey PerformanceData;
|
|
|
|
/// <summary>Contains information about the default user configuration. This field reads the Windows registry base key HKEY_USERS.</summary>
|
|
// Token: 0x04000187 RID: 391
|
|
[Token(Token = "0x4000187")]
|
|
public static readonly RegistryKey Users;
|
|
}
|
|
}
|