This commit is contained in:
niko
2026-04-12 16:51:38 +02:00
parent 1b6f6d81d0
commit c12fbe3fc6
17828 changed files with 2994770 additions and 0 deletions
@@ -0,0 +1,21 @@
using System;
using Cpp2IlInjected;
namespace Microsoft.Win32
{
/// <summary>Specifies optional behavior when retrieving name/value pairs from a registry key.</summary>
// Token: 0x02000068 RID: 104
[Token(Token = "0x2000068")]
[Flags]
public enum RegistryValueOptions
{
/// <summary>No optional behavior is specified.</summary>
// Token: 0x040001A1 RID: 417
[Token(Token = "0x40001A1")]
None = 0,
/// <summary>A value of type <see cref="F:Microsoft.Win32.RegistryValueKind.ExpandString" /> is retrieved without expanding its embedded environment variables.</summary>
// Token: 0x040001A2 RID: 418
[Token(Token = "0x40001A2")]
DoNotExpandEnvironmentNames = 1
}
}