Class DataEventArgs<T>
A generic System.EventArgs class that supports a single set of data.
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
Namespace: IRM
Assembly: IRM.dll
Syntax
public class DataEventArgs<T> : EventArgs
Type Parameters
T
|
Constructors
DataEventArgs(T)
Initializes a new instance of the DataEventArgs<T> class.
Declaration
public DataEventArgs(T data)
Parameters
T
data
The data. |
Exceptions
System.ArgumentNullException
Throws an System.ArgumentNullException for a null instance of |
Properties
Data
Gets the data.
Declaration
public T Data { get; }
Property Value
T
|