Files
Apr2020-Cpp2Il-Dump/mscorlib/System/Configuration/Assemblies/AssemblyVersionCompatibility.cs
T
niko 8fc35183db a
2026-04-11 22:19:20 +02:00

28 lines
1022 B
C#

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