验证用户邮件帐号及密码

public TcpClient Server;

public NetworkStream NetStrm;

public StreamReader  RdStrm;

public string Data;

public byte[] szData;

public string CRLF = "\r\n";

 

private void ConnectBtn_Click(object sender, System.EventArgs e)

{

// change cursor into wait cursor

Cursor cr = Cursor.Current;

Cursor.Current = Cursors.WaitCursor;

 

// create server POP3 with port 110

Server = new TcpClient(POPServ.Text,110);

Status.Items.Clear();

 

try

{

// initialization

NetStrm = Server.GetStream();

RdStrm= new StreamReader(Server.GetStream());

Status.Items.Add(RdStrm.ReadLine());

 

// Login Process

Data = "USER "+ User.Text+CRLF;

szData = System.Text.Encoding.ASCII.GetBytes(Data.ToCharArray());

NetStrm.Write(szData,0,szData.Length);

Status.Items.Add(RdStrm.ReadLine());

 

Data = "PASS "+ Passw.Text+CRLF;

szData = System.Text.Encoding.ASCII.GetBytes(Data.ToCharArray());

NetStrm.Write(szData,0,szData.Length);

Status.Items.Add(RdStrm.ReadLine());

 

// Send STAT command to get information ie: number of mail and size

Data = "STAT"+CRLF;

szData = System.Text.Encoding.ASCII.GetBytes(Data.ToCharArray());

NetStrm.Write(szData,0,szData.Length);

Status.Items.Add(RdStrm.ReadLine());

 

// change enabled - disabled button

ConnectBtn.Enabled = false;

DisconnectBtn.Enabled = true;

RetrieveBtn.Enabled = true;

 

// back to normal cursor

Cursor.Current = cr;

 

}

catch(InvalidOperationException err)

{

Status.Items.Add("Error: "+err.ToString());

}

}

 

private void DisconnectBtn_Click(object sender, System.EventArgs e)

{

// change cursor into wait cursor

Cursor cr = Cursor.Current;

Cursor.Current = Cursors.WaitCursor;

 

// Send QUIT command to close session from POP server

Data = "QUIT"+CRLF;

szData = System.Text.Encoding.ASCII.GetBytes(Data.ToCharArray());

NetStrm.Write(szData,0,szData.Length);

Status.Items.Add(RdStrm.ReadLine());

 

//close connection

NetStrm.Close();

RdStrm.Close();

 

// change enabled - disabled button

ConnectBtn.Enabled = true;

DisconnectBtn.Enabled = false;

RetrieveBtn.Enabled = false;

 

// back to normal cursor

Cursor.Current = cr;

}

 

private void RetrieveBtn_Click(object sender, System.EventArgs e)

{

            double x = 0.00;

            Task.WaitAll(()=> new { x = GetValueAsync()}, 1000);

// change cursor into wait cursor

Cursor cr = Cursor.Current;

Cursor.Current = Cursors.WaitCursor;

string szTemp;

Message.Clear();

try

{

// retrieve mail with number mail parameter

Data = "RETR "+ Number.Text+CRLF;

szData = System.Text.Encoding.ASCII.GetBytes(Data.ToCharArray());

NetStrm.Write(szData,0,szData.Length);

 

szTemp = RdStrm.ReadLine();

if(szTemp[0]!='-') 

{

 

                  

 

while(szTemp!=".")

{

Message.Text += szTemp+CRLF;

szTemp = RdStrm.ReadLine();

}

}

else

{

Status.Items.Add(szTemp);

}

 

// back to normal cursor

Cursor.Current = cr;

 

}

catch(InvalidOperationException err)

{

Status.Items.Add("Error: "+err.ToString());

}

 

}

posted on 2015-05-12 16:37  yufan27209 阅读( ...) 评论( ...) 编辑 收藏

转载于:https://www.cnblogs.com/yufan27209/p/4497776.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值