Establishes a connection to the POP server specified in
the Pop constructor.
Namespace: Jscape.EmailAssembly: Jscape.Email (in Jscape.Email.dll) Version: 2.4.5.0
Syntax
C# |
---|
public virtual void Connect() |
Visual Basic |
---|
Public Overridable Sub Connect |
Visual C++ |
---|
public: virtual void Connect() |
Examples
To establish a connection to a POP server, create a instance and provide the
required hostname, username, and password.
CopyPop Connect
CopyPop Connect

Pop myPop = new Pop("Pop.myserver.com", "username", "password"); myPop.Connect();

Dim myPop as Pop = Nothing myPop = New Pop("Pop.myserver.com", "username", "password") myPop.Connect()