28 lines
1022 B
C#
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
|
|
}
|
|
}
|