Represents a CancelEventArgs 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 DataCancelEventArgs<T> : CancelEventArgs
Visual Basic
Public Class DataCancelEventArgs(Of T)
	Inherits CancelEventArgs
Visual C++
generic<typename T>
public ref class DataCancelEventArgs : public CancelEventArgs
F#
type DataCancelEventArgs<'T> =  
    class
        inherit CancelEventArgs
    end

Type Parameters

T
The type of the data attached to the event.

Inheritance Hierarchy

System..::..Object
  System..::..EventArgs
    System.ComponentModel..::..CancelEventArgs
      System.Extensions..::..DataCancelEventArgs<(Of <(<'T>)>)>

See Also