AbstractMsgManager RefresherCopy DelegateCleanCode C# Libraries v1.2.03 API
A delegate definition to allow updating the caller's Form.

Namespace: CleanCode.Forms
Assembly: CleanCode (in CleanCode.dll) Version: 1.2.3.0 (1.2.03)
Syntax

public delegate void RefresherCopy()
Remarks

Typically, this is as simple as...
messageManager = new ... // (depends on subclass)
messageManager.Refresher =  delegate() { Refresh(); };
... specifying the calling Form's Refresh method.
See Also