我知道如何捕获http响应(以HttpWebResponsein case of an error的形式,但是当方法返回200ok时,我该怎么做?我想统一处理所有的回复。

// 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?

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

最佳答案

状态代码属性有帮助吗?
http://msdn.microsoft.com/en-us/library/system.net.httpwebresponse.statuscode.aspx

关于c# - 如何获得“200 OK”的HttpWebResponse?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/14849136/

10-12 05:21