C# Class MailKit.ProtocolLogger

A protocol logger.
A protocol logger.
Inheritance: IProtocolLogger
Afficher le fichier Open project: jstedfast/MailKit Class Usage Examples

Méthodes publiques

Méthode Description
Dispose ( ) : void

Releases all resource used by the MailKit.ProtocolLogger object.

Call Dispose() when you are finished using the MailKit.ProtocolLogger. The Dispose() method leaves the MailKit.ProtocolLogger in an unusable state. After calling Dispose(), you must release all references to the MailKit.ProtocolLogger so the garbage collector can reclaim the memory that the MailKit.ProtocolLogger was occupying.

LogClient ( byte buffer, int offset, int count ) : void

Logs a sequence of bytes sent by the client.

Logs a sequence of bytes sent by the client.

LogConnect ( Uri uri ) : void

Logs a connection to the specified URI.

Logs a connection to the specified URI.

LogServer ( byte buffer, int offset, int count ) : void

Logs a sequence of bytes sent by the server.

Logs a sequence of bytes sent by the server.

ProtocolLogger ( Stream stream ) : System

Initializes a new instance of the MailKit.ProtocolLogger class.

Creates a new ProtocolLogger to log to a specified stream.

ProtocolLogger ( string fileName ) : System

Initializes a new instance of the MailKit.ProtocolLogger class.

Creates a new ProtocolLogger to log to a specified file.

Méthodes protégées

Méthode Description
Dispose ( bool disposing ) : void

Releases the unmanaged resources used by the ProtocolLogger and optionally releases the managed resources.

Releases the unmanaged resources used by the ProtocolLogger and optionally releases the managed resources.

Private Methods

Méthode Description
Log ( byte prefix, bool &midline, byte buffer, int offset, int count ) : void
ValidateArguments ( byte buffer, int offset, int count ) : void

Method Details

Dispose() public méthode

Releases all resource used by the MailKit.ProtocolLogger object.
Call Dispose() when you are finished using the MailKit.ProtocolLogger. The Dispose() method leaves the MailKit.ProtocolLogger in an unusable state. After calling Dispose(), you must release all references to the MailKit.ProtocolLogger so the garbage collector can reclaim the memory that the MailKit.ProtocolLogger was occupying.
public Dispose ( ) : void
Résultat void

Dispose() protected méthode

Releases the unmanaged resources used by the ProtocolLogger and optionally releases the managed resources.
Releases the unmanaged resources used by the ProtocolLogger and optionally releases the managed resources.
protected Dispose ( bool disposing ) : void
disposing bool true to release both managed and unmanaged resources; /// false to release only the unmanaged resources.
Résultat void

LogClient() public méthode

Logs a sequence of bytes sent by the client.
Logs a sequence of bytes sent by the client.
/// is null. /// /// is less than zero or greater than the length of . /// -or- /// The is not large enough to contain bytes strting /// at the specified . /// /// The logger has been disposed. /// /// An I/O error occurred. ///
public LogClient ( byte buffer, int offset, int count ) : void
buffer byte The buffer to log.
offset int The offset of the first byte to log.
count int The number of bytes to log.
Résultat void

LogConnect() public méthode

Logs a connection to the specified URI.
Logs a connection to the specified URI.
/// is null. /// /// The logger has been disposed. /// /// An I/O error occurred. ///
public LogConnect ( Uri uri ) : void
uri System.Uri The URI.
Résultat void

LogServer() public méthode

Logs a sequence of bytes sent by the server.
Logs a sequence of bytes sent by the server.
/// is null. /// /// is less than zero or greater than the length of . /// -or- /// The is not large enough to contain bytes strting /// at the specified . /// /// The logger has been disposed. /// /// An I/O error occurred. ///
public LogServer ( byte buffer, int offset, int count ) : void
buffer byte The buffer to log.
offset int The offset of the first byte to log.
count int The number of bytes to log.
Résultat void

ProtocolLogger() public méthode

Initializes a new instance of the MailKit.ProtocolLogger class.
Creates a new ProtocolLogger to log to a specified stream.
public ProtocolLogger ( Stream stream ) : System
stream Stream The stream.
Résultat System

ProtocolLogger() public méthode

Initializes a new instance of the MailKit.ProtocolLogger class.
Creates a new ProtocolLogger to log to a specified file.
public ProtocolLogger ( string fileName ) : System
fileName string The file name.
Résultat System