Table of Contents

Class EventArgs<T1, T2>

Namespace
Emgu.Util
Assembly
Emgu.CV.dll

A generic EventArgs

public class EventArgs<T1, T2> : EventArgs

Type Parameters

T1

The type of the first value

T2

The type of the second value

Inheritance
EventArgs<T1, T2>
Inherited Members

Constructors

EventArgs(T1, T2)

Create a generic EventArgs with two values

public EventArgs(T1 value1, T2 value2)

Parameters

value1 T1

The first value

value2 T2

The second value

Properties

Value1

The first value

public T1 Value1 { get; }

Property Value

T1

Value2

The second value

public T2 Value2 { get; }

Property Value

T2