DispatcherUnhandledExceptionFilterEventArgs.RequestCatch 属性

定义

获取或设置异常是否应被捕获,并获取或设置调用的事件处理程序。

public:
 property bool RequestCatch { bool get(); void set(bool value); };
public bool RequestCatch { get; set; }
member this.RequestCatch : bool with get, set
Public Property RequestCatch As Boolean

属性值

如果应引发 UnhandledException,则为 true;否则为 false。 默认值是 true

注解

事件 UnhandledExceptionFilter 提供了一种不引发事件 UnhandledException 的方法。 UnhandledException首先引发 ,如果 RequestCatch 上的 DispatcherUnhandledExceptionFilterEventArgs 设置为 falseUnhandledException则不会引发 事件。

事件多播中以前的处理程序可能已将此属性设置为 false,指示不会捕获异常。 “不捕获”行为将替代所有其他行为,因为它最有可能意味着调试方案。

适用于

另请参阅