在 WCF 服务中,我有自定义IErrorHandler
. 效果很好,我通过记录错误修复了很多东西。我得到的最后一个错误是序列化异常:
Unexpected end of file. Following elements are not closed: Source, item, root.
There was an error deserializing the object of type System.Collections.Generic.List`1[[My.Web.Services.Dto.Log, My.Web.Services.Dto, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]. Unexpected end of file. Following elements are not clo
这告诉我消息没有正确地从客户那里传来。有什么办法可以让我看到它是什么消息?我可以从内部访问 HTTP 发布参数IErrorHandler
吗?