Syntax

C#
public class Pop3
Visual Basic (Declaration)
Public Class Pop3
Visual C++
public ref class Pop3

The type exposes the following properties.

Public Properties

  NameDescription
Public propertyAvailable
Gets the amount of data that has been received from the network and is available to be read.
(Inherited from TcpClient.)
Public propertyClient
Gets or sets the underlying Socket.
(Inherited from TcpClient.)
Public propertyConnected
Gets a value indicating whether the underlying Socket for a TcpClient is connected to a remote host.
(Inherited from TcpClient.)
Public propertyExclusiveAddressUse
Gets or sets a Boolean value that specifies whether the TcpClient allows only one client to use a port.
(Inherited from TcpClient.)
Public propertyHasTimeStamp
True if there was a timestamp in server's greeting (usually it means that APOP command is supported, but not always). Filled by Connect method.
Public propertyLingerState
Gets or sets information about the sockets linger time.
(Inherited from TcpClient.)
Public propertyMailboxSize
Size of the mail massages on server in octets. Filled by GetAccountStat()().
Public propertyMessageCount
Number of messages on server. Filled by GetAccountStat()().
Public propertyNoDelay
Gets or sets a value that disables a delay when send or receive buffers are not full.
(Inherited from TcpClient.)
Public propertyPassword
User's password.
Public propertyProgressThreshold
Says how often ReceiveProgress event will be raised. In bytes.
Public propertyReceiveBufferSize
Gets or sets the size of the receive buffer.
(Inherited from TcpClient.)
Public propertyReceiveTimeout
Gets or sets the amount of time a TcpClient will wait to receive data once a read operation is initiated.
(Inherited from TcpClient.)
Public propertySendBufferSize
Gets or sets the size of the send buffer.
(Inherited from TcpClient.)
Public propertySendTimeout
Gets or sets the amount of time a TcpClient will wait for a send operation to complete successfully.
(Inherited from TcpClient.)
Public propertySSLStream
Returns used SslStream or null if SSL is not enbled.
(Inherited from TcpTextClient.)
Public propertyUser
Username.

Protected Properties

  NameDescription
Protected propertyActive
Gets or set a value that indicates whether a connection has been made.
(Inherited from TcpClient.)

See Also