Processes the queued messages.
Namespace: CleanCode.FormsAssembly: CleanCode (in CleanCode.dll) Version: 1.2.3.0 (1.2.03)
protected abstract void ProcessQueuedMessages(
List<string> queue
)
protected abstract void ProcessQueuedMessages(
List<string> queue
)
Protected MustOverride Sub ProcessQueuedMessages ( _
queue As List(Of String) _
)
Protected MustOverride Sub ProcessQueuedMessages ( _
queue As List(Of String) _
)
protected:
virtual void ProcessQueuedMessages(
List<String^>^ queue
) abstract
protected:
virtual void ProcessQueuedMessages(
List<String^>^ queue
) abstract
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.