Hunny Software Library Reference

Pop3Client.LineSink Delegate

Accepts lines from a multiple line POP3 server response.

[Visual Basic]
Public Delegate Sub Pop3Client.LineSink( _
   ByVal line As ByteString _
)
[C#]
public delegate void Pop3Client.LineSink(
   ByteString line
);

Parameters

line
A single line of the POP3 server's response.

Remarks

When you call a method that causes the server to send a multiple line response, you must pass an instance of the LineSink delegate to receive the lines of the server's response.

The first line of a multiple line response is the status line. The library does not pass this status line to your method.

            TODO: add example here
            

Requirements

Namespace: Hunny.Mail

Assembly: Hunny.Mail (in Hunny.Mail.dll)

See Also

Hunny.Mail Namespace