Skip to content

Latest commit

 

History

History
24 lines (15 loc) · 857 Bytes

MessageHandler_T_(T).md

File metadata and controls

24 lines (15 loc) · 857 Bytes

MessageHandler(T) Delegate

Encapsulates a method that has a single in parameter and does not return a value used for Subscribe<T>(MessageHandler<T>) method.

public delegate void MessageHandler<T>(in T message);

Type parameters

T

The type of the parameter of the method that this delegate encapsulates.

Parameters

message T

The parameter of the method that this delegate encapsulates.