我是否需要从Request.CreateResponse()处理HttpResponseException?

noc*_*ura 8 c# asp.net dispose

我在ApiController的请求处理方法中有这个代码:

if (uri != null)
{
    HttpResponseMessage r = Request.CreateResponse(HttpStatusCode.Redirect);
    r.Headers.Location = uri;
    throw new HttpResponseException(r);
}
Run Code Online (Sandbox Code Playgroud)

潜在的问题是"r"从未被处理过(至少在我的代码中).
我可以将它包装在一个使用中,但是在响应流式传输到客户端之前不会"r"处理掉?

处理这个问题的正确方法是什么?

Eri*_*ips 5

我看到的所有示例都表明您不必处理响应.

public Product GetProduct(int id)
{
  Product item = repository.Get(id);
  if (item == null)
  {
    var resp = new HttpResponseMessage(HttpStatusCode.NotFound)
    {
      Content = new StringContent(string.Format("No product with ID = {0}", id)),
      ReasonPhrase = "Product ID Not Found"
    }
    throw new HttpResponseException(resp);
  }
  return item;
}
Run Code Online (Sandbox Code Playgroud)

查看HttpResponseException的源代码,它似乎HttpResponseMessage Response用该值填充Property()并处理它可能会导致HttpResponseMessage导致ObjectDisposedException或无法传递给客户端.

您还会注意到源代码中有一个SupressMessage:

 [SuppressMessage("Microsoft.Reliability", 
  "CA2000:Dispose objects before losing scope", 
  Justification = "Instance is disposed elsewhere")]
Run Code Online (Sandbox Code Playgroud)

实例在其他地方处理(这不是指HttpResponseMesssage,它不实现IDisposable).

处理这个问题的正确方法是什么?

我认为不需要对您的代码进行任何更改.