Allow a control to be called by control_trace_listener for writing debug or trace message.
Public Methods | |
| virtual auto | write (const xtd::string &message) -> void=0 |
| Write debug or trace message on this instance control. | |
| virtual auto | write_line (const xtd::string &message) -> void=0 |
| Write debug or trace message on this instance control followed by line terminator. | |
| virtual auto | flush () -> void=0 |
| Flushes the output buffer and causes buffered data to write to the control. | |
|
pure virtual |
Write debug or trace message on this instance control.
| message | A string that tcontains the debug or trace message. |
Implemented in xtd::forms::debug_form, and xtd::forms::trace_form.
|
pure virtual |
Write debug or trace message on this instance control followed by line terminator.
| message | A string that tcontains the debug or trace message. |
Implemented in xtd::forms::debug_form, and xtd::forms::trace_form.
|
pure virtual |
Flushes the output buffer and causes buffered data to write to the control.
Implemented in xtd::forms::debug_form, and xtd::forms::trace_form.