我知道如何捕获HTTP响应(以HttpWebResponse
)in 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?
或者我应该捕获不同的响应类?
答案 0 :(得分:3)