37 lines
1.1 KiB
C#
37 lines
1.1 KiB
C#
using System;
|
|
using System.Runtime.InteropServices;
|
|
|
|
namespace System
|
|
{
|
|
/// <summary>Provides data for the <see cref="E:System.AppDomain.TypeResolve" />, <see cref="E:System.AppDomain.ResourceResolve" />, and <see cref="E:System.AppDomain.AssemblyResolve" /> events.</summary>
|
|
/// <filterpriority>2</filterpriority>
|
|
// Token: 0x020006A3 RID: 1699
|
|
[ComVisible(true)]
|
|
public class ResolveEventArgs : EventArgs
|
|
{
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.ResolveEventArgs" /> class.</summary>
|
|
/// <param name="name">The name of an item to resolve. </param>
|
|
// Token: 0x06004078 RID: 16504 RVA: 0x000DBC44 File Offset: 0x000D9E44
|
|
public ResolveEventArgs(string name)
|
|
{
|
|
this.m_Name = name;
|
|
}
|
|
|
|
/// <summary>Gets the name of the item to resolve.</summary>
|
|
/// <returns>The name of the item to resolve.</returns>
|
|
/// <filterpriority>2</filterpriority>
|
|
// Token: 0x17000BE6 RID: 3046
|
|
// (get) Token: 0x06004079 RID: 16505 RVA: 0x000DBC54 File Offset: 0x000D9E54
|
|
public string Name
|
|
{
|
|
get
|
|
{
|
|
return this.m_Name;
|
|
}
|
|
}
|
|
|
|
// Token: 0x040019A7 RID: 6567
|
|
private string m_Name;
|
|
}
|
|
}
|