using System; using System.Runtime.InteropServices; using Cpp2IlInjected; namespace System.Reflection { /// Provides access to manifest resources, which are XML files that describe application dependencies. // Token: 0x02000220 RID: 544 [Token(Token = "0x2000220")] [ComVisible(true)] public class ManifestResourceInfo { /// Initializes a new instance of the class for a resource that is contained by the specified assembly and file, and that has the specified location. /// The assembly that contains the manifest resource. /// The name of the file that contains the manifest resource, if the file is not the same as the manifest file. /// A bitwise combination of enumeration values that provides information about the location of the manifest resource. // Token: 0x060013D6 RID: 5078 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x60013D6")] [Address(RVA = "0x2A087E0", Offset = "0x2A075E0", VA = "0x182A087E0")] public ManifestResourceInfo(Assembly containingAssembly, string containingFileName, ResourceLocation resourceLocation) { } /// Gets the containing assembly for the manifest resource. /// The manifest resource's containing assembly. // Token: 0x170001F8 RID: 504 // (get) Token: 0x060013D7 RID: 5079 RVA: 0x00002082 File Offset: 0x00000282 [Token(Token = "0x170001F8")] public virtual Assembly ReferencedAssembly { [Token(Token = "0x60013D7")] [Address(RVA = "0x3F6E20", Offset = "0x3F5C20", VA = "0x1803F6E20", Slot = "4")] get { return null; } } /// Gets the name of the file that contains the manifest resource, if it is not the same as the manifest file. /// The manifest resource's file name. // Token: 0x170001F9 RID: 505 // (get) Token: 0x060013D8 RID: 5080 RVA: 0x00002082 File Offset: 0x00000282 [Token(Token = "0x170001F9")] public virtual string FileName { [Token(Token = "0x60013D8")] [Address(RVA = "0x3F5F40", Offset = "0x3F4D40", VA = "0x1803F5F40", Slot = "5")] get { return null; } } /// Gets the manifest resource's location. /// A bitwise combination of flags that indicates the location of the manifest resource. // Token: 0x170001FA RID: 506 // (get) Token: 0x060013D9 RID: 5081 RVA: 0x0000EDF0 File Offset: 0x0000CFF0 [Token(Token = "0x170001FA")] public virtual ResourceLocation ResourceLocation { [Token(Token = "0x60013D9")] [Address(RVA = "0x3F7310", Offset = "0x3F6110", VA = "0x1803F7310", Slot = "6")] get { return (ResourceLocation)0; } } // Token: 0x04000A64 RID: 2660 [global::Cpp2IlInjected.FieldOffset(Offset = "0x10")] [Token(Token = "0x4000A64")] private Assembly _containingAssembly; // Token: 0x04000A65 RID: 2661 [global::Cpp2IlInjected.FieldOffset(Offset = "0x18")] [Token(Token = "0x4000A65")] private string _containingFileName; // Token: 0x04000A66 RID: 2662 [global::Cpp2IlInjected.FieldOffset(Offset = "0x20")] [Token(Token = "0x4000A66")] private ResourceLocation _resourceLocation; } }