Represents an EventArgs that has a piece of data attached to it.

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

Syntax

C#
public class DataEventArgs<T> : EventArgs
Visual Basic
Public Class DataEventArgs(Of T)
	Inherits EventArgs
Visual C++
generic<typename T>
public ref class DataEventArgs : public EventArgs
F#
type DataEventArgs<'T> =  
    class
        inherit EventArgs
    end

Type Parameters

T
The type of the data attached to the event.

Inheritance Hierarchy

System..::..Object
  System..::..EventArgs
    System.Extensions..::..DataEventArgs<(Of <(<'T>)>)>

See Also