Class EventArgs<T>
A generic EventArgs
public class EventArgs<T> : EventArgs
Type Parameters
T
The type of arguments
- Inheritance
-
EventArgs<T>
- Inherited Members
Constructors
EventArgs(T)
Create a generic EventArgs with the specific value
public EventArgs(T value)
Parameters
value
TThe value
Properties
Value
The value of the EventArgs
public T Value { get; }
Property Value
- T