using System;
using System.Runtime.InteropServices;
using Cpp2IlInjected;
namespace System.Reflection
{
/// Provides information about an reference.
// Token: 0x02000212 RID: 530
[Token(Token = "0x2000212")]
[Flags]
[ComVisible(true)]
[Serializable]
public enum AssemblyNameFlags
{
/// Specifies that no flags are in effect.
// Token: 0x04000A17 RID: 2583
[Token(Token = "0x4000A17")]
None = 0,
/// Specifies that a public key is formed from the full public key rather than the public key token.
// Token: 0x04000A18 RID: 2584
[Token(Token = "0x4000A18")]
PublicKey = 1,
/// Specifies that just-in-time (JIT) compiler optimization is disabled for the assembly. This is the exact opposite of the meaning that is suggested by the member name.
// Token: 0x04000A19 RID: 2585
[Token(Token = "0x4000A19")]
EnableJITcompileOptimizer = 16384,
/// Specifies that just-in-time (JIT) compiler tracking is enabled for the assembly.
// Token: 0x04000A1A RID: 2586
[Token(Token = "0x4000A1A")]
EnableJITcompileTracking = 32768,
/// Specifies that the assembly can be retargeted at runtime to an assembly from a different publisher. This value supports the .NET Framework infrastructure and is not intended to be used directly from your code.
// Token: 0x04000A1B RID: 2587
[Token(Token = "0x4000A1B")]
Retargetable = 256
}
}