开发者

How do I suppress FxCop rule 'DoNotCatchGeneralExceptionTypes' with SupressMessage?

开发者 https://www.devze.com 2023-01-15 08:34 出处:网络
I\'ve got code that catches everything and logs it.I don\'t normally do this, but I\'m writing an HTTP handler and want to return an appropriate HTTP code.Anyway,I\'m putting the following at the top

I've got code that catches everything and logs it. I don't normally do this, but I'm writing an HTTP handler and want to return an appropriate HTTP code. Anyway, I'm putting the following at the top of my method:

[SuppressMessage("Microsoft.Design", "CA1031:DoNotCatchGeneralExceptionTypes", Justification = "We just log the exception and return an HTTP code")]

FxCop is seemingly ignoring this, 开发者_如何学Pythonwhich is very frustrating. Especially as it's also ignoring all of my compound word overrides too!

Any idea why it's doing this? I'm using FxCop 10 which is part of the Windows 7/.NET 4 SDK.


  1. In Solution Explorer, right-click your project and choose Properties.
  2. In the Properties window, choose the Build tab.
  3. In the Conditional compilation symbols text box, enter CODE_ANALYSIS.
  4. In the code where you want to suppress certain messages, add the namespace System.Diagnostics.CodeAnalysis to the using section.
  5. In FxCop, right-click the message you want to suppress and select Copy As -> SuppressMessage.
  6. In your C# code, paste the SuppressMessage attribute in your code.

Your SupressMessage looks correct, so it could be the missing conditional compilation symbol!

Hope this helps, at least works on my machine ;) Greetz, Tom.

Source

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号