2

我正在为返回标准状态代码(404、200 等)以及自定义 json 消息的 web 服务开发客户端。

我无法找到包含自定义消息的 WebException 的属性。

关于如何获取消息的任何想法?

4

1 回答 1

1

简单的解决方案:

WebException 在 Response 属性中具有可用的实际 WebResponse。从这里开始,只需按照正常方式处理响应即可:

    private static JsonParseException ProcessException(WebException webEx)
    {
        var stream = webEx.Response.GetResponseStream();
        using (var memory = new MemoryStream())
        {
            var buffer = new byte[4096];
            var read = 0;
            do
            {
                read = stream.Read(buffer, 0, buffer.Length);
                memory.Write(buffer, 0, read);

            } while (read > 0);

            memory.Position = 0;
            int pageSize = (int)memory.Length;
            byte[] bytes = new byte[pageSize];
            memory.Read(bytes, 0, pageSize);
            memory.Seek(0, SeekOrigin.Begin);
            string data = new StreamReader(memory).ReadToEnd();

            memory.Close();
            DefaultMeta meta = JsonConvert.DeserializeObject<DefaultMeta>(data);
            return new JsonParseException(meta.Meta, meta.Meta.Error, webEx);
        }
    }

我正在使用 NewtonSoft Json 库来反序列化 Json 响应

于 2009-12-01T07:27:15.673 回答