Initializes a new instance of the DataEventArgs<(Of <(<'T>)>)> class.

Namespace: System.Extensions
Assembly: System.Extensions (in System.Extensions.dll) Version: 0.0.0.5 (0.0.0.5)

Syntax

C#
public DataEventArgs(
	T data
)
Visual Basic
Public Sub New ( 
	data As T
)
Visual C++
public:
DataEventArgs(
	T data
)
F#
new : 
        data : 'T -> DataEventArgs

Parameters

data
Type: T
The data to store with the EventArgs.

Exceptions

ExceptionCondition
System..::..ArgumentNullExceptionIf data is null.

See Also