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