Message Property

Summary
Gets or sets the message for the log entry.
Syntax
C#
C++/CLI
public string Message { get; set; } 
public: 
property String^ Message { 
   String^ get(); 
   void set (    String^ ); 
} 

Property Value

The message for the log entry.

Example
C#
using Leadtools; 
using Leadtools.Logging; 
using Leadtools.Logging.LoggingChannel; 
 
 
 
// 
// The log should already be configured with the correct logging channels. 
// 
 
private void Log(Logger log) 
{ 
   LogEntry entry = new LogEntry(); 
 
   entry.LogType = LogType.Information; 
   entry.Message = "This is an information message"; 
   entry.CustomInformation.Add("Custom", "My Custom Information"); 
   entry.Source = "TestSource"; 
   log.Log(entry); 
} 
Requirements

Target Platforms

See Also

Reference

LogEntry Class

LogEntry Members

Help Version 23.0.2024.2.29
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2024 LEAD Technologies, Inc. All Rights Reserved.

Leadtools.Logging Assembly

Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.