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

24 lines
690 B
C#

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