CustomInformation Property

Summary
Gets the custom information associated with the log entry.
Syntax
C#
C++/CLI
[XmlElementAttribute("custom")] 
public SerializableDictionary<string, object> CustomInformation { get; set; } 
[XmlElementAttribute("custom")] 
public: 
property SerializableDictionary<String^,Object^>^ CustomInformation { 
   SerializableDictionary<String^,Object^>^ get(); 
   void set (    SerializableDictionary<String^,Object^>^ ); 
} 

Property Value

The custom information associated with the log entry.

Remarks

Objects added to this list needs to be XML serializable.

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.