servicemodel异常的异常处理

时间:2012-05-08 05:36:23

标签: c# exception-handling

我有一个wpf应用程序,它使用wcf服务。我希望在服务请求期间捕获任何异常。 所以我有类似的东西

 try{  call to service }
  catch(CommunicationObjectFaultedException){}
   catch (EndpointNotFoundException){}

不是为每个请求执行上述操作,而是如何创建单个函数来处理异常?

1 个答案:

答案 0 :(得分:0)

lambda将完成这项工作,如下所示:

    public static bool TryExecute(Action a) {
        try {
            a();
            return true;
        }
        catch (CommunicationObjectFaultedException) { }
        catch (EndpointNotFoundException) { }
        return false;
    }

并像这样使用:

        bool ok = TryExecute(() => {
            // call to service
            //...
        });