我有一个 wpf 应用程序,它使用 wcf 服务。我希望在服务请求期间捕获任何异常。所以我有这样的东西
try{ call to service }
catch(CommunicationObjectFaultedException){}
catch (EndpointNotFoundException){}
我如何创建一个函数来处理异常,而不是为每个请求执行上述操作?
我有一个 wpf 应用程序,它使用 wcf 服务。我希望在服务请求期间捕获任何异常。所以我有这样的东西
try{ call to service }
catch(CommunicationObjectFaultedException){}
catch (EndpointNotFoundException){}
我如何创建一个函数来处理异常,而不是为每个请求执行上述操作?