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