using System;
using System.Collections.Generic;
using System.Text;
using NewLife.Net.Sockets;
namespace NewLife.Net.Pop3
{
/// <summary>Pop3会话</summary>
public class Pop3Session : NetSession
{
//TODO 未实现Pop3会话
#region 属性
#endregion
#region 启动会话
void Start()
{
}
#endregion
}
}
|