using System; using System.Runtime.InteropServices; using Cpp2IlInjected; namespace System.Configuration.Assemblies { /// Defines the different types of assembly version compatibility. This feature is not available in version 1.0 of the .NET Framework. // Token: 0x020001BB RID: 443 [Token(Token = "0x20001BB")] [ComVisible(true)] [Serializable] public enum AssemblyVersionCompatibility { /// The assembly cannot execute with other versions if they are executing on the same machine. // Token: 0x040008D3 RID: 2259 [Token(Token = "0x40008D3")] SameMachine = 1, /// The assembly cannot execute with other versions if they are executing in the same process. // Token: 0x040008D4 RID: 2260 [Token(Token = "0x40008D4")] SameProcess, /// The assembly cannot execute with other versions if they are executing in the same application domain. // Token: 0x040008D5 RID: 2261 [Token(Token = "0x40008D5")] SameDomain } }