using System;
using System.Runtime.InteropServices;
namespace System
{
/// Provides data for the , , and events.
/// 2
// Token: 0x020006A3 RID: 1699
[ComVisible(true)]
public class ResolveEventArgs : EventArgs
{
/// Initializes a new instance of the class.
/// The name of an item to resolve.
// Token: 0x06004078 RID: 16504 RVA: 0x000DBC44 File Offset: 0x000D9E44
public ResolveEventArgs(string name)
{
this.m_Name = name;
}
/// Gets the name of the item to resolve.
/// The name of the item to resolve.
/// 2
// 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;
}
}