Gets the object used for logging MailBee activities into a file or memory buffer.
A reference to the object used for logging MailBee activities into a file or memory buffer.
This property is never a null reference (Nothing in Visual Basic) even if logging is not used.
This sample sets file logging on and sets the filename of the log file.
[C#] // To use the code below, import MailBee namespaces at the top of your code using MailBee; using MailBee.Pop3Mail; // The actual code (put it into a method of your class). Pop3 pop = new Pop3(); pop.Log.Enabled = true; pop.Log.Filename = @"C:\log.txt"; pop.Connect("mail.domain.com"); pop.Disconnect();
[Visual Basic] ' To use the code below, import MailBee namespaces at the top of your code Imports MailBee Imports MailBee.Pop3Mail ' The actual code (put it into a method of your class). Dim pop As New Pop3 pop.Log.Enabled = True pop.Log.Filename = "C:\log.txt" pop.Connect("mail.domain.com") pop.Disconnect()
Pop3 Class | MailBee.Pop3Mail Namespace