using System;
namespace Microsoft.Win32
{
/// Specifies optional behavior when retrieving name/value pairs from a registry key.
// Token: 0x02000078 RID: 120
[Flags]
public enum RegistryValueOptions
{
/// No optional behavior is specified.
// Token: 0x040000FF RID: 255
None = 0,
/// A value of type is retrieved without expanding its embedded environment variables.
// Token: 0x04000100 RID: 256
DoNotExpandEnvironmentNames = 1
}
}