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

47 lines
2.2 KiB
C#

using System;
using System.Runtime.InteropServices;
using Cpp2IlInjected;
namespace Microsoft.Win32
{
/// <summary>Specifies the data types to use when storing values in the registry, or identifies the data type of a value in the registry.</summary>
// Token: 0x02000067 RID: 103
[Token(Token = "0x2000067")]
[ComVisible(true)]
public enum RegistryValueKind
{
/// <summary>An unsupported registry data type. For example, the Microsoft Win32 API registry data type REG_RESOURCE_LIST is unsupported. Use this value to specify that the <see cref="M:Microsoft.Win32.RegistryKey.SetValue(System.String,System.Object)" /> method should determine the appropriate registry data type when storing a name/value pair.</summary>
// Token: 0x04000198 RID: 408
[Token(Token = "0x4000198")]
Unknown,
/// <summary>A null-terminated string. This value is equivalent to the Win32 API registry data type REG_SZ.</summary>
// Token: 0x04000199 RID: 409
[Token(Token = "0x4000199")]
String,
/// <summary>A null-terminated string that contains unexpanded references to environment variables, such as %PATH%, that are expanded when the value is retrieved. This value is equivalent to the Win32 API registry data type REG_EXPAND_SZ.</summary>
// Token: 0x0400019A RID: 410
[Token(Token = "0x400019A")]
ExpandString,
/// <summary>Binary data in any form. This value is equivalent to the Win32 API registry data type REG_BINARY.</summary>
// Token: 0x0400019B RID: 411
[Token(Token = "0x400019B")]
Binary,
/// <summary>A 32-bit binary number. This value is equivalent to the Win32 API registry data type REG_DWORD.</summary>
// Token: 0x0400019C RID: 412
[Token(Token = "0x400019C")]
DWord,
/// <summary>An array of null-terminated strings, terminated by two null characters. This value is equivalent to the Win32 API registry data type REG_MULTI_SZ.</summary>
// Token: 0x0400019D RID: 413
[Token(Token = "0x400019D")]
MultiString = 7,
/// <summary>A 64-bit binary number. This value is equivalent to the Win32 API registry data type REG_QWORD.</summary>
// Token: 0x0400019E RID: 414
[Token(Token = "0x400019E")]
QWord = 11,
/// <summary>No data type.</summary>
// Token: 0x0400019F RID: 415
[Token(Token = "0x400019F")]
None = -1
}
}