LogEntry Class
Represents an entry to be added into the log file or memory log buffer.
Inheritance Hierarchy
SystemObject
  MailBeeLogEntry

Namespace: MailBee
Assembly: MailBee.NET (in MailBee.NET.dll) Version: 12.4 build 677 for .NET 4.5
Syntax
public class LogEntry

The LogEntry type exposes the following members.

Methods
  NameDescription
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodToString
Returns formatted log string.
(Overrides ObjectToString.)
Top
Properties
  NameDescription
Public propertyAddThisEntry
Gets or sets whether this log entry must be added into the log.
Public propertyContextInfo
Gets the string containing fully-qualified name of the current context.
Public propertyMessageComment
Gets or sets the string containing any additional information about the message text or data.
Public propertyMessageText
Gets or sets the string containing the message text or data.
Public propertyMessageType
Gets the type of the log entry.
Public propertyTime
Gets the date and time when this log entry was created.
Top
Remarks
The instance of this class is passed as NewEntry property value of LogNewEntry event which can be raised by Smtp, Pop3, and Imap components.
Note Note
The developer can set AddThisEntry property value to false to cancel adding a particular entry into the log.
See Also