Exemplo n.º 1
0
 public Pop3Client(ServerConnection InServerConn)
 {
     mServerConnection = InServerConn;
     m_credential      = new Pop3Credential(
         mServerConnection.AccountName,
         mServerConnection.Password,
         mServerConnection.ServerName);
     UseSecureConnection = mServerConnection.SecureConnect;
     Port = mServerConnection.PortNx;
 }
Exemplo n.º 2
0
 // ------------------------- Pop3Client constructor --------------------
 public Pop3Client(string user, string pass, string server)
 {
     m_credential = new Pop3Credential(user, pass, server);
 }