如何获得“200 OK”的HttpWebResponse?

时间:2013-02-13 08:16:10

标签: c# .net wcf http

我知道如何捕获HTTP响应(以HttpWebResponsein case of an error的形式,但是当方法返回200 OK时如何执行此操作?我想统一处理所有回复。

// IService.cs
public async Task Ping();

// Client.cs
public static void ReactToHttpResponse(HttpWebResponse res)
{
    // Play with the http response ...
}

await service.Ping();                  // => 200 OK, on the wire
ReactToHttpResponse(/* ??? */)   // How to capture the HttpWebResponse?

或者我应该捕获不同的响应类?

1 个答案:

答案 0 :(得分:3)