AbstractMsgManager ProcessQueuedMessages Method CleanCode C# Libraries v1.2.03 API
Processes the queued messages.

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

protected abstract void ProcessQueuedMessages(
	List<string> queue
)

Parameters

queue
Type: OnlineSystem.Collections.Generic List OnlineString 
The queue.
Remarks

Once StartQueuing  is invoked, messages are collected rather than sent to the target Control. Once StopQueuing  is invoked, all the collected messages need to be output to the Control via this method. This method must be implemented by each subclass.
See Also