Files
27Aug2021-Cpp2IL-Dump/mscorlib/System/Configuration/Assemblies/AssemblyVersionCompatibility.cs
T
niko c12fbe3fc6 m
2026-04-12 16:51:38 +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: 0x020001C2 RID: 450
[Token(Token = "0x20001C2")]
[ComVisible(true)]
[Serializable]
public enum AssemblyVersionCompatibility
{
/// <summary>The assembly cannot execute with other versions if they are executing on the same machine.</summary>
// Token: 0x040008DD RID: 2269
[Token(Token = "0x40008DD")]
SameMachine = 1,
/// <summary>The assembly cannot execute with other versions if they are executing in the same process.</summary>
// Token: 0x040008DE RID: 2270
[Token(Token = "0x40008DE")]
SameProcess,
/// <summary>The assembly cannot execute with other versions if they are executing in the same application domain.</summary>
// Token: 0x040008DF RID: 2271
[Token(Token = "0x40008DF")]
SameDomain
}
}