本文整理汇总了C#中AsyncResult.ThrowException方法的典型用法代码示例。如果您正苦于以下问题:C# AsyncResult.ThrowException方法的具体用法?C# AsyncResult.ThrowException怎么用?C# AsyncResult.ThrowException使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类AsyncResult
的用法示例。
在下文中一共展示了AsyncResult.ThrowException方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: OnSendCompleted
private void OnSendCompleted(AsyncResult res)
{
var stream = this.NetworkStream;
/*var buff = new byte[4096];
var bytes = 0;
do
{
bytes += stream.Read(buff, bytes, buff.Length - bytes);
} while (bytes < buff.Length);
File.WriteAllBytes("c:\\response.dat", buff);*/
var httpStateLine = ReadLine(stream);
var stateMatch = Regex.Match(httpStateLine, @"^HTTP/\d\.\d (?<code>\d+) .+$");
var stateCode = (HttpStatusCode)int.Parse(stateMatch.Groups["code"].Value);
var respMsg = new HttpMessage.Response(stream, stateCode);
string hdr;
while (!string.IsNullOrEmpty(hdr = ReadLine(stream)))
{
var delimiterPos = hdr.IndexOf(": ");
respMsg.Headers.Add(hdr.Substring(0, delimiterPos), hdr.Substring(delimiterPos + 1));
}
switch (stateCode)
{
case HttpStatusCode.Continue:
// continue reading response
this.OnSendCompleted(res); // read next http response
break;
case HttpStatusCode.Found:
// temporary redirect
res.Client.Close();
stream.Dispose();
var newUrl = respMsg.Headers["Location"];
if (res.RequestMessage.Stream != null)
{
// need to send data again, move stream to the beginning
res.RequestMessage.Stream.Position = res.RequestStreamStart;
}
this.BeginSend(newUrl, res.RequestMessage, res.CallBack, res.AsyncState);
break;
case HttpStatusCode.OK:
case HttpStatusCode.PartialContent:
var cook = respMsg.Headers["Set-Cookie"];
if (this.CookieContainer != null && !string.IsNullOrEmpty(cook))
{
this.CookieContainer.SetCookies(res.Uri, cook);
}
res.OnComplete(respMsg);
break;
default:
res.ThrowException(new ApplicationException("Server returned: HTTP " + stateCode));
break;
}
}