gpt4 book ai didi

c# - 服务模型异常的异常处理

转载 作者:太空宇宙 更新时间:2023-11-03 16:32:05 25 4
gpt4 key购买 nike

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

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

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

最佳答案

lambda 将完成此操作,如下所示:

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

然后像这样使用:

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

关于c# - 服务模型异常的异常处理,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10493112/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com