www.pudn.com > despop3client_demo.zip > Pop3StateObject.cs
using System;
using System.Collections;
using System.IO;
using System.Net;
using System.Net.Sockets;
using System.Text;
namespace Pop3
{
///
/// Holds the current state of the client
/// socket.
///
public class Pop3StateObject
{
// Client socket.
public Socket workSocket = null;
// Size of receive buffer.
public const int BufferSize = 256;
// Receive buffer.
public byte[] buffer = new byte[BufferSize];
// Received data string.
public StringBuilder sb = new StringBuilder();
}
}