异步选项
如果在 5 秒内没有收到任何字节,您可以在异步回调方法中使用计时器来完成操作。每次接收到字节时重置定时器。在 BeginRead 之前启动它。
同步选项
或者,您可以使用底层套接字的 ReceiveTimeout 属性来确定在完成读取之前等待的最长时间。您可以使用更大的缓冲区并将超时设置为例如 5 秒。
从MSDN 文档中,该属性仅适用于同步读取。您可以在单独的线程上执行同步读取。
更新
这是从类似问题拼凑而成的粗略、未经测试的代码。它可能不会按原样运行(或没有错误),但应该给你一个想法:
private EventWaitHandle asyncWait = new ManualResetEvent(false);
private Timer abortTimer = null;
private bool success = false;
public void ReadFromTwitter()
{
abortTimer = new Timer(AbortTwitter, null, 50000, System.Threading.Timeout.Infinite);
asyncWait.Reset();
input.BeginRead(buffer, 0, buffer.Length, InputReadComplete, null);
asyncWait.WaitOne();
}
void AbortTwitter(object state)
{
success = false; // Redundant but explicit for clarity
asyncWait.Set();
}
void InputReadComplete()
{
// Disable the timer:
abortTimer.Change(System.Threading.Timeout.Infinite, System.Threading.Timeout.Infinite);
success = true;
asyncWait.Set();
}