C#System.Net.WebException检索自定义404消息

时间:2009-12-01 05:44:19

标签: c# system.net.webexception

我正在为一个返回标准状态代码(404,200等)的Web服务的客户端工作 以及自定义的json消息。

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

关于如何掌握信息的任何想法?

1 个答案:

答案 0 :(得分: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响应