2

我试图使用 Hammock 库在电话上使用开放(流)连接。问题是 Windows Phone 似乎不接受 KeepAlive 连接(WebRequest.KeepAlive不可用),我想知道是否有任何方法可以使用它们。

谢谢!

4

1 回答 1

2

这是可能的 :

        HttpWebRequest request = HttpWebRequest.CreateHttp(new Uri(@"http://www.mysite.com", UriKind.Absolute)) as HttpWebRequest;
        request.Headers["Connection"] = "Keep-Alive";
于 2013-02-23T00:23:08.060 回答