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

19 lines
507 B
C#

using System;
namespace System.Runtime.InteropServices
{
/// <summary>Defines a set of flags used when registering assemblies.</summary>
// Token: 0x020002EE RID: 750
[ComVisible(true)]
[Flags]
public enum AssemblyRegistrationFlags
{
/// <summary>Indicates no special settings.</summary>
// Token: 0x04000CBC RID: 3260
None = 0,
/// <summary>Indicates that the code base key for the assembly should be set in the registry.</summary>
// Token: 0x04000CBD RID: 3261
SetCodeBase = 1
}
}