Files
niko 8fc35183db a
2026-04-11 22:19:20 +02:00

85 lines
3.3 KiB
C#

using System;
using System.Runtime.InteropServices;
using Cpp2IlInjected;
namespace System.Reflection
{
/// <summary>Provides access to manifest resources, which are XML files that describe application dependencies.</summary>
// Token: 0x02000220 RID: 544
[Token(Token = "0x2000220")]
[ComVisible(true)]
public class ManifestResourceInfo
{
/// <summary>Initializes a new instance of the <see cref="T:System.Reflection.ManifestResourceInfo" /> class for a resource that is contained by the specified assembly and file, and that has the specified location.</summary>
/// <param name="containingAssembly">The assembly that contains the manifest resource.</param>
/// <param name="containingFileName">The name of the file that contains the manifest resource, if the file is not the same as the manifest file.</param>
/// <param name="resourceLocation">A bitwise combination of enumeration values that provides information about the location of the manifest resource.</param>
// 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)
{
}
/// <summary>Gets the containing assembly for the manifest resource.</summary>
/// <returns>The manifest resource's containing assembly.</returns>
// 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;
}
}
/// <summary>Gets the name of the file that contains the manifest resource, if it is not the same as the manifest file.</summary>
/// <returns>The manifest resource's file name.</returns>
// 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;
}
}
/// <summary>Gets the manifest resource's location.</summary>
/// <returns>A bitwise combination of <see cref="T:System.Reflection.ResourceLocation" /> flags that indicates the location of the manifest resource.</returns>
// 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;
}
}