Table of Contents

Delegate EventHandlerByRef<T>

Namespace
Tooq.Tech.FH.ClientLib
Assembly
Tooq.Tech.FH.ClientLib.dll

Delegate to represent event handlers that receive struct types as argument. This delegate is used by the MdClientSession to pass market data updates by reference to the event handlers.

public delegate void EventHandlerByRef<T>(object sender, ref T args) where T : struct

Parameters

sender object

The object that raised the event

args T

The parameter passed to the delegate by the event

Type Parameters

T

The type of the market data update