- ASP.NET Core 2 High Performance(Second Edition)
- James Singleton
- 214字
- 2021-07-08 09:38:58
Exception filters
You can filter exceptions more easily with the when keyword. You no longer need to catch every type of exception that you are interested in and then filter it manually inside the catch block. This is a feature that was already present in VB and F#, so it's nice that C# has finally caught up.
There are some small benefits to this approach. For example, if your filter is not matched, then the exception will still be caught by other catch blocks in the same try statement. You also don't need to remember to rethrow the exception to avoid it from being swallowed. This helps with debugging, as Visual Studio will no longer break as it would when you use throw.
For example, you could check to see whether there is a message in the exception and handle it differently, as shown here:
catch (Exception e) when (e?.Message?.Length > 0)
When this feature was in development, a different keyword (if) was used. So be careful of any old information online.
One thing to keep in mind is that relying on a particular exception message is fragile. If your application is localized, then the message may be in a different language to what you expect. This holds true outside of exception filtering too.
- Vue.js 3.x快速入門
- TensorFlow Lite移動端深度學習
- Spring Boot+Spring Cloud+Vue+Element項目實戰:手把手教你開發權限管理系統
- Animate CC二維動畫設計與制作(微課版)
- MATLAB實用教程
- Swift語言實戰精講
- INSTANT Sinatra Starter
- Geospatial Development By Example with Python
- Java程序設計與項目案例教程
- Arduino可穿戴設備開發
- C++程序設計教程
- Qt 4開發實踐
- Mastering PowerCLI
- Learning Cocos2d-JS Game Development
- Learning Alfresco Web Scripts