23 lines
975 B
C#
23 lines
975 B
C#
using System;
|
|
using System.Runtime.InteropServices;
|
|
|
|
namespace System
|
|
{
|
|
/// <summary>Specifies the location where an environment variable is stored or retrieved in a set or get operation.</summary>
|
|
/// <filterpriority>2</filterpriority>
|
|
// Token: 0x02000668 RID: 1640
|
|
[ComVisible(true)]
|
|
public enum EnvironmentVariableTarget
|
|
{
|
|
/// <summary>The environment variable is stored or retrieved from the environment block associated with the current process. </summary>
|
|
// Token: 0x040018F9 RID: 6393
|
|
Process,
|
|
/// <summary>The environment variable is stored or retrieved from the HKEY_CURRENT_USER\Environment key in the Windows operating system registry. </summary>
|
|
// Token: 0x040018FA RID: 6394
|
|
User,
|
|
/// <summary>The environment variable is stored or retrieved from the HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\Session Manager\Environment key in the Windows operating system registry. </summary>
|
|
// Token: 0x040018FB RID: 6395
|
|
Machine
|
|
}
|
|
}
|