Files
2026-04-10 22:50:51 +02:00

44 lines
1.9 KiB
C#

using System;
using System.Reflection;
using System.Runtime.InteropServices;
using Cpp2IlInjected;
namespace System
{
/// <summary>Provides data for loader resolution events, such as the <see cref="E:System.AppDomain.TypeResolve" />, <see cref="E:System.AppDomain.ResourceResolve" />, <see cref="E:System.AppDomain.ReflectionOnlyAssemblyResolve" />, and <see cref="E:System.AppDomain.AssemblyResolve" /> events.</summary>
// Token: 0x0200018E RID: 398
[Token(Token = "0x200018E")]
[ComVisible(true)]
public class ResolveEventArgs : EventArgs
{
/// <summary>Initializes a new instance of the <see cref="T:System.ResolveEventArgs" /> class, specifying the name of the item to resolve.</summary>
/// <param name="name">The name of an item to resolve.</param>
// Token: 0x06000FF5 RID: 4085 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000FF5")]
[Address(RVA = "0x2955390", Offset = "0x2954190", VA = "0x182955390")]
public ResolveEventArgs(string name)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.ResolveEventArgs" /> class, specifying the name of the item to resolve and the assembly whose dependency is being resolved.</summary>
/// <param name="name">The name of an item to resolve.</param>
/// <param name="requestingAssembly">The assembly whose dependency is being resolved.</param>
// Token: 0x06000FF6 RID: 4086 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000FF6")]
[Address(RVA = "0x2955310", Offset = "0x2954110", VA = "0x182955310")]
public ResolveEventArgs(string name, Assembly requestingAssembly)
{
}
// Token: 0x04000676 RID: 1654
[global::Cpp2IlInjected.FieldOffset(Offset = "0x10")]
[Token(Token = "0x4000676")]
private string m_Name;
// Token: 0x04000677 RID: 1655
[global::Cpp2IlInjected.FieldOffset(Offset = "0x18")]
[Token(Token = "0x4000677")]
private Assembly m_Requesting;
}
}