using System; using System.Runtime.InteropServices; namespace System.ComponentModel.Design { /// Provides data for the , , , and events. // Token: 0x02000040 RID: 64 [ComVisible(true)] public class ComponentEventArgs : EventArgs { /// Initializes a new instance of the class. /// The component that is the source of the event. // Token: 0x060002A9 RID: 681 RVA: 0x000096DC File Offset: 0x000078DC public ComponentEventArgs(IComponent component) { this.icomp = component; } /// Gets the component associated with the event. /// The component associated with the event. // Token: 0x170000C4 RID: 196 // (get) Token: 0x060002AA RID: 682 RVA: 0x000096EC File Offset: 0x000078EC public virtual IComponent Component { get { return this.icomp; } } // Token: 0x040000C0 RID: 192 private IComponent icomp; } }