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: 0x02000195 RID: 405 [Token(Token = "0x2000195")] [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: 0x0600102B RID: 4139 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x600102B")] [Address(RVA = "0x30CA820", Offset = "0x30C9820", VA = "0x1830CA820")] 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: 0x0600102C RID: 4140 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x600102C")] [Address(RVA = "0x30CA7A0", Offset = "0x30C97A0", VA = "0x1830CA7A0")] public ResolveEventArgs(string name, Assembly requestingAssembly) { } // Token: 0x04000680 RID: 1664 [global::Cpp2IlInjected.FieldOffset(Offset = "0x10")] [Token(Token = "0x4000680")] private string m_Name; // Token: 0x04000681 RID: 1665 [global::Cpp2IlInjected.FieldOffset(Offset = "0x18")] [Token(Token = "0x4000681")] private Assembly m_Requesting; } }