29 lines
835 B
C#
29 lines
835 B
C#
using System;
|
|
using System.Runtime.InteropServices;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace System.Reflection
|
|
{
|
|
/// <summary>Specifies the resource location.</summary>
|
|
// Token: 0x02000221 RID: 545
|
|
[Token(Token = "0x2000221")]
|
|
[Flags]
|
|
[ComVisible(true)]
|
|
[Serializable]
|
|
public enum ResourceLocation
|
|
{
|
|
/// <summary>Specifies an embedded (that is, non-linked) resource.</summary>
|
|
// Token: 0x04000A68 RID: 2664
|
|
[Token(Token = "0x4000A68")]
|
|
Embedded = 1,
|
|
/// <summary>Specifies that the resource is contained in another assembly.</summary>
|
|
// Token: 0x04000A69 RID: 2665
|
|
[Token(Token = "0x4000A69")]
|
|
ContainedInAnotherAssembly = 2,
|
|
/// <summary>Specifies that the resource is contained in the manifest file.</summary>
|
|
// Token: 0x04000A6A RID: 2666
|
|
[Token(Token = "0x4000A6A")]
|
|
ContainedInManifestFile = 4
|
|
}
|
|
}
|