using System; using System.Reflection; using System.Runtime.InteropServices; using Cpp2IlInjected; namespace System { /// Provides data for loader resolution events, such as the , , , and events. // Token: 0x0200018E RID: 398 [Token(Token = "0x200018E")] [ComVisible(true)] public class ResolveEventArgs : EventArgs { /// Initializes a new instance of the class, specifying the name of the item to resolve. /// The name of an item to resolve. // Token: 0x06000FF5 RID: 4085 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6000FF5")] [Address(RVA = "0x2955390", Offset = "0x2954190", VA = "0x182955390")] public ResolveEventArgs(string name) { } /// Initializes a new instance of the class, specifying the name of the item to resolve and the assembly whose dependency is being resolved. /// The name of an item to resolve. /// The assembly whose dependency is being resolved. // 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; } }