public class EventArgs
Object
EventArgs
mscorlib
BCL
EventArgs
is the base class for classes containing event data.
[Note: This class contains no event data; it is used by events that do not pass state information to an event handler when an event is raised. If the event handler requires state information, the application must create a subclass of this class to hold the data. For example, the AssemblyLoadEventArgs class is used to hold the data for assembly load events, and contains a Assembly object that describes the loaded assembly.For details on events, see EventHandler.
]
System Namespace
EventArgs Constructors
EventArgs Fields
public EventArgs();
Constructs a new instance of theEventArgs
class.
System.EventArgs Class, System Namespace
public static readonly EventArgs Empty;
Returns a new EventArgs instance for use with events that have no state information.
This field is read-only.Accessing this field is equivalent to calling the EventArgs constructor.
System.EventArgs Class, System Namespace