using System; using System.Runtime.InteropServices; namespace System.Reflection { /// Specifies the resource location. // Token: 0x0200026B RID: 619 [ComVisible(true)] [Flags] [Serializable] public enum ResourceLocation { /// Specifies an embedded (that is, non-linked) resource. // Token: 0x04000B1C RID: 2844 Embedded = 1, /// Specifies that the resource is contained in another assembly. // Token: 0x04000B1D RID: 2845 ContainedInAnotherAssembly = 2, /// Specifies that the resource is contained in the manifest file. // Token: 0x04000B1E RID: 2846 ContainedInManifestFile = 4 } }