using System; using Cpp2IlInjected; namespace Microsoft.Win32 { /// Specifies optional behavior when retrieving name/value pairs from a registry key. // Token: 0x02000068 RID: 104 [Token(Token = "0x2000068")] [Flags] public enum RegistryValueOptions { /// No optional behavior is specified. // Token: 0x040001A1 RID: 417 [Token(Token = "0x40001A1")] None = 0, /// A value of type is retrieved without expanding its embedded environment variables. // Token: 0x040001A2 RID: 418 [Token(Token = "0x40001A2")] DoNotExpandEnvironmentNames = 1 } }