m
This commit is contained in:
@@ -0,0 +1,28 @@
|
||||
using System;
|
||||
using System.Runtime.InteropServices;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Reflection
|
||||
{
|
||||
/// <summary>Specifies the resource location.</summary>
|
||||
// Token: 0x02000228 RID: 552
|
||||
[Token(Token = "0x2000228")]
|
||||
[Flags]
|
||||
[ComVisible(true)]
|
||||
[Serializable]
|
||||
public enum ResourceLocation
|
||||
{
|
||||
/// <summary>Specifies an embedded (that is, non-linked) resource.</summary>
|
||||
// Token: 0x04000A72 RID: 2674
|
||||
[Token(Token = "0x4000A72")]
|
||||
Embedded = 1,
|
||||
/// <summary>Specifies that the resource is contained in another assembly.</summary>
|
||||
// Token: 0x04000A73 RID: 2675
|
||||
[Token(Token = "0x4000A73")]
|
||||
ContainedInAnotherAssembly = 2,
|
||||
/// <summary>Specifies that the resource is contained in the manifest file.</summary>
|
||||
// Token: 0x04000A74 RID: 2676
|
||||
[Token(Token = "0x4000A74")]
|
||||
ContainedInManifestFile = 4
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user