4

有没有办法使用异常消息过滤elma中的异常?

示例:
“System.Web.HttpException:请求超时。” 我不想过滤掉所有的 HttpException,而只过滤掉超时的请求。
“System.Web.HttpException:超出最大请求长度。”

我不想做的是为此编写自己的代码。那么是否可以使用 buildin-web.config 配置来做到这一点?

谢谢!

4

2 回答 2

11

是的你可以。只需使用正则表达式来询问消息。有关如何比较异常消息的详细信息,请参见下面的示例。

<errorFilter>
  <test>
    <!-- http://groups.google.com/group/elmah/t/cbe82cee76cc6321 -->
    <and>
      <is-type binding='Exception'
               type='System.Web.HttpException, System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' />
      <regex binding='Exception.Message'
             pattern='invalid\s+viewstate'
             caseSensitive='false' />
      <regex binding='Context.Request.UserAgent'
             pattern='Trident/4(\.[0-9])*'
             caseSensitive='false' />
    </and>
  </test>
</errorFilter>
于 2010-03-30T23:57:15.843 回答
7

您可以在 global.asax 中设置事件处理程序以避免丑陋的配置正则表达式设置:

void ErrorMail_Filtering(object sender, Elmah.ExceptionFilterEventArgs e) 
{     
    if (e.Exception.Message.Contains("Request timed out"))
        e.Dismiss(); 
}

请参阅错误过滤

于 2011-01-12T20:29:00.530 回答