C#
VB
C++
Logs the specified entry as a LogType.Information.
source
The source of the message.
message
The message.
Log the log types to a textbox.
using Leadtools;using Leadtools.Logging;using Leadtools.Logging.LoggingChannel;public class TextBoxLoggingChannel : LoggingChannel{private TextBox _TextBox;public TextBoxLoggingChannel(TextBox textbox){_TextBox = textbox;}public override void WriteLog(ILogEntry logEntry){string xml = Format(logEntry);_TextBox.Text += xml + "\r\n\r\n";}}private void TestLogger(TextBox logTextBox){TextBoxLoggingChannel channel = new TextBoxLoggingChannel(logTextBox);//// Add Channel to global logger//Logger.Global.LoggingChannels.Add(channel);////Send Log Messages to Logger.//Logger.Global.Info("TestSource", "Info Message");Logger.Global.Debug("TestSource", "Debug Message");Logger.Global.Error("TestSource", "Error Message");Logger.Global.Warning("TestSource", "Warning Message");ArgumentException e = new ArgumentException();Logger.Global.Exception("TestSource", e);}
Imports LeadtoolsImports Leadtools.LoggingImports Leadtools.Logging.LoggingChannelPublic Class TextBoxLoggingChannel : Inherits LoggingChannelPrivate _TextBox As TextBoxPublic Sub New(ByVal textbox As TextBox)_TextBox = textboxEnd SubPublic Overrides Sub WriteLog(ByVal logEntry As ILogEntry)Dim xml As String = Format(logEntry)_TextBox.Text += xml & Constants.vbCrLf & Constants.vbCrLfEnd SubEnd ClassPrivate Sub TestLogger(ByVal logTextBox As TextBox)Dim channel As TextBoxLoggingChannel = New TextBoxLoggingChannel(logTextBox)'' Add Channel to global logger'Logger.Global.LoggingChannels.Add(channel)''Send Log Messages to Logger.'Logger.Global.Info("TestSource", "Info Message")Logger.Global.Debug("TestSource", "Debug Message")Logger.Global.Error("TestSource", "Error Message")Logger.Global.Warning("TestSource", "Warning Message")Dim e As ArgumentException = New ArgumentException()Logger.Global.Exception("TestSource", e)End Sub
Raster .NET | C API | C++ Class Library | JavaScript HTML5
Document .NET | C API | C++ Class Library | JavaScript HTML5
Medical .NET | C API | C++ Class Library | JavaScript HTML5
Medical Web Viewer .NET
