Exemplo n.º 1
0
        private void StartProcess(ISmtpClientSession clientSession)
        {
            var processInfo = new SmtpProcessInfo(clientSession);

            _processes.Add(processInfo);

            processInfo.Start();
        }
Exemplo n.º 2
0
 public SmtpProcessInfo(ISmtpClientSession clientSession)
 {
     _clientSession = clientSession;
 }