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: 0x02000227 RID: 551 [Token(Token = "0x2000227")] [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: 0x06001414 RID: 5140 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6001414")] [Address(RVA = "0x6E7930", Offset = "0x6E6930", VA = "0x1806E7930")] public ManifestResourceInfo(Assembly containingAssembly, string containingFileName, ResourceLocation resourceLocation) { } /// Gets the containing assembly for the manifest resource. /// The manifest resource's containing assembly. // Token: 0x17000202 RID: 514 // (get) Token: 0x06001415 RID: 5141 RVA: 0x00002082 File Offset: 0x00000282 [Token(Token = "0x17000202")] public virtual Assembly ReferencedAssembly { [Token(Token = "0x6001415")] [Address(RVA = "0x411530", Offset = "0x410530", VA = "0x180411530", 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: 0x17000203 RID: 515 // (get) Token: 0x06001416 RID: 5142 RVA: 0x00002082 File Offset: 0x00000282 [Token(Token = "0x17000203")] public virtual string FileName { [Token(Token = "0x6001416")] [Address(RVA = "0x4157B0", Offset = "0x4147B0", VA = "0x1804157B0", 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: 0x17000204 RID: 516 // (get) Token: 0x06001417 RID: 5143 RVA: 0x0000F150 File Offset: 0x0000D350 [Token(Token = "0x17000204")] public virtual ResourceLocation ResourceLocation { [Token(Token = "0x6001417")] [Address(RVA = "0x470B70", Offset = "0x46FB70", VA = "0x180470B70", Slot = "6")] get { return (ResourceLocation)0; } } // Token: 0x04000A6E RID: 2670 [global::Cpp2IlInjected.FieldOffset(Offset = "0x10")] [Token(Token = "0x4000A6E")] private Assembly _containingAssembly; // Token: 0x04000A6F RID: 2671 [global::Cpp2IlInjected.FieldOffset(Offset = "0x18")] [Token(Token = "0x4000A6F")] private string _containingFileName; // Token: 0x04000A70 RID: 2672 [global::Cpp2IlInjected.FieldOffset(Offset = "0x20")] [Token(Token = "0x4000A70")] private ResourceLocation _resourceLocation; } }