|  | IProtocol | 
 Syntax
Syntaxvoid LogClient( byte[] buffer, int offset, int count )
 Exceptions
Exceptions| Exception | Condition | 
|---|---|
| ArgumentNullException | buffer is . | 
| ArgumentOutOfRangeException | offset is less than zero or greater than the length of buffer. -or- The buffer is not large enough to contain count bytes starting at the specified offset. | 
| ObjectDisposedException | The logger has been disposed. | 
| IOException | An I/O error occurred. | 
 Remarks
RemarksLogs a sequence of bytes sent by the client.
LogClient(Byte, Int32, Int32) is called by the IMailService upon every successful write operation to its underlying network stream, passing the exact same buffer, offset, and count arguments to the logging function.
 See Also
See Also