Delegate EventHandlerByRef<T>
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
objectThe object that raised the event
args
TThe parameter passed to the delegate by the event
Type Parameters
T
The type of the market data update