C# Класс MailKit.ProtocolLogger

A protocol logger.
A protocol logger.
Наследование: IProtocolLogger
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
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.

Защищенные методы

Метод Описание
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.

Приватные методы

Метод Описание
Log ( byte prefix, bool &midline, byte buffer, int offset, int count ) : void
ValidateArguments ( byte buffer, int offset, int count ) : void

Описание методов

Dispose() публичный Метод

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
Результат void

Dispose() защищенный Метод

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.
Результат void

LogClient() публичный Метод

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.
Результат void

LogConnect() публичный Метод

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.
Результат void

LogServer() публичный Метод

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.
Результат void

ProtocolLogger() публичный Метод

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.
Результат System

ProtocolLogger() публичный Метод

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.
Результат System