Files
2026-06-04 11:42:34 +02:00

23 lines
877 B
C#

using System;
using System.Runtime.InteropServices;
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: 0x02000147 RID: 327
[ComVisible(true)]
[Serializable]
public enum AssemblyVersionCompatibility
{
/// <summary>The assembly cannot execute with other versions if they are executing on the same machine.</summary>
// Token: 0x04000416 RID: 1046
SameMachine = 1,
/// <summary>The assembly cannot execute with other versions if they are executing in the same process.</summary>
// Token: 0x04000417 RID: 1047
SameProcess,
/// <summary>The assembly cannot execute with other versions if they are executing in the same application domain.</summary>
// Token: 0x04000418 RID: 1048
SameDomain
}
}