ASP.NET WEB API我需要异步客户端吗?

时间:2015-03-09 13:46:00

标签: c# asp.net-web-api async-await

我有一个Web API应用程序,它公开了某些异步方法,例如:

public async Task<HttpResponseMessage> Put(string id){
  var data = await Request.Content.ReadAsStringAsync();
  //do something to put data in db

return Request.CreateResponse(HttpStatusCode.Ok);
}

我还有一个类库,它使用System.Net.WebRequest来使用这个API,如下所示:

   var request = (HttpWebRequest)WebRequest.Create(url);
   var response = await request.GetResponseAsync();

响应是否需要检索异步?如果是这样,为什么?或者我也可以使用request.GetResponse();

我使用GetResponse之前有时会抛出500错误(An asynchronous module or handler completed while an asynchronous operation was still pending)。一旦我将其更改为GetResponseAsync(),我就停止收到此错误。

编辑:有时会引发500错误的代码

我将web api方法剥离到(只是为了检查500错误是业务逻辑还是别的)。注意:这是在将使用者更改为异步之后(第一个函数是使用者,然后是api方法):

    public HttpWebResponse(GetApiResponseForPut(string url, string putData, NameValueCollection headers)
    {
      var request = (HttpWebRequest)WebRequest.Create(url);

            request.CookieContainer = _cookieContainer;
            request.Method = "PUT";

            if (headers != null)
            {
                request.Headers.Add(headers);
            }

            var encoding = new ASCIIEncoding();
            var byte1 = new byte[0];
            if (putData != null)
            {
                byte1 = encoding.GetBytes(putData);
            }

            request.ContentType = "application/x-www-form-urlencoded";
            request.ContentLength = byte1.Length;



            Stream requestStream = request.GetRequestStream();
            requestStream.Write(byte1, 0, byte1.Length);

            requestStream.Close();
            var response = await request.GetResponseAsync();
            return (HttpWebResponse)response;

    }

    public async Task<HttpResponseMessage> Put(string id)
    {
      HttpResponseMessage response = Request.CreateResponse(HttpStatusCode.OK);
      return response;
    }

1 个答案:

答案 0 :(得分:2)

  

响应是否需要检索异步?如果是这样,为什么?

不,它没有。您需要分离服务器端的操作方式以及客户端查询端点的方式。当您公开async Task方法时,您声明在服务器端调用中,您正在进行异步调用。这对调用者来说是透明的,他得到的只是一个API端点,他对内部实现没有任何了解。

请记住,即使您在服务器端使用async,请求也只会在完成后返回给调用方。