标签: c# wcf c#-4.0
我想捕获WCF服务中的所有错误,并找到了这样做的方法
OperationContext.Current.Channel.Faulted += delegate(object sender, EventArgs args) { //exception is thrwon in wcf service }
问题是如何知道Fault事件中的确切异常?
答案 0 :(得分:1)
更好的方法是通过实施error handler界面来使用IErrorHandler。