Constructs a new PopSsl instance. Sets hostname, port, username and password for POP3 connection.

Namespace: Jscape.Email
Assembly: Jscape.Email (in Jscape.Email.dll) Version: 2.4.5.0

Syntax

C#
public PopSsl(
	string hostname,
	int port,
	string username,
	string password
)
Visual Basic
Public Sub New ( _
	hostname As String, _
	port As Integer, _
	username As String, _
	password As String _
)
Visual C++
public:
PopSsl(
	String^ hostname, 
	int port, 
	String^ username, 
	String^ password
)

Parameters

hostname
Type: System..::..String
the hostname of POP3 server
port
Type: System..::..Int32
the port of secure POP3 server
username
Type: System..::..String
the username of POP3 user
password
Type: System..::..String
the password of POP3 user

See Also