WeakActionHandlerT1, T2, T3(ActionT1, T2, T3, Type, String) Constructor |
Namespace: AltaxoAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax public WeakActionHandler(
Action<T1, T2, T3> handler,
Type eventSourceType,
string eventName
)
Parameters
- handler ActionT1, T2, T3
- The event handler method (the event sink).
- eventSourceType Type
- The type of object that holds the static event.
- eventName String
- The name of the static event.
Remarks
Typical usage:
StaticClass.Changed += new WeakActionHandler(this.EhHandleChange, typeof(StaticClass), nameof(StaticClass.Changed));
See Also