37 lines
1.5 KiB
C#
37 lines
1.5 KiB
C#
using System;
|
|
using System.Runtime.InteropServices;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace System.Reflection
|
|
{
|
|
/// <summary>Provides information about an <see cref="T:System.Reflection.Assembly" /> reference.</summary>
|
|
// Token: 0x02000219 RID: 537
|
|
[Token(Token = "0x2000219")]
|
|
[Flags]
|
|
[ComVisible(true)]
|
|
[Serializable]
|
|
public enum AssemblyNameFlags
|
|
{
|
|
/// <summary>Specifies that no flags are in effect.</summary>
|
|
// Token: 0x04000A21 RID: 2593
|
|
[Token(Token = "0x4000A21")]
|
|
None = 0,
|
|
/// <summary>Specifies that a public key is formed from the full public key rather than the public key token.</summary>
|
|
// Token: 0x04000A22 RID: 2594
|
|
[Token(Token = "0x4000A22")]
|
|
PublicKey = 1,
|
|
/// <summary>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.</summary>
|
|
// Token: 0x04000A23 RID: 2595
|
|
[Token(Token = "0x4000A23")]
|
|
EnableJITcompileOptimizer = 16384,
|
|
/// <summary>Specifies that just-in-time (JIT) compiler tracking is enabled for the assembly.</summary>
|
|
// Token: 0x04000A24 RID: 2596
|
|
[Token(Token = "0x4000A24")]
|
|
EnableJITcompileTracking = 32768,
|
|
/// <summary>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.</summary>
|
|
// Token: 0x04000A25 RID: 2597
|
|
[Token(Token = "0x4000A25")]
|
|
Retargetable = 256
|
|
}
|
|
}
|