Files
niko c12fbe3fc6 m
2026-04-12 16:51:38 +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: 0x02000227 RID: 551
[Token(Token = "0x2000227")]
[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: 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)
{
}
/// <summary>Gets the containing assembly for the manifest resource.</summary>
/// <returns>The manifest resource's containing assembly.</returns>
// 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;
}
}
/// <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: 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;
}
}
/// <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: 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;
}
}