mscorlib(4.0.0.0) API with additions
EventArgs.cs
2 
3 namespace System
4 {
7  [ComVisible(true)]
8  [__DynamicallyInvokable]
9  public class EventArgs
10  {
12  [__DynamicallyInvokable]
13  public static readonly EventArgs Empty = new EventArgs();
14 
16  [__DynamicallyInvokable]
17  public EventArgs()
18  {
19  }
20  }
21 }
Definition: __Canon.cs:3
Represents the base class for classes that contain event data, and provides a value to use for events...
Definition: EventArgs.cs:9
static readonly EventArgs Empty
Provides a value to use with events that do not have event data.
Definition: EventArgs.cs:13
EventArgs()
Initializes a new instance of the T:System.EventArgs class.
Definition: EventArgs.cs:17
Specifies that the class can be serialized.