UnhandledExceptionEventArgs.Handled 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得或設定值,指出是否已處理例外狀況。
public:
property bool Handled { bool get(); void set(bool value); };
bool Handled();
void Handled(bool value);
public bool Handled { get; set; }
var boolean = unhandledExceptionEventArgs.handled;
unhandledExceptionEventArgs.handled = boolean;
Public Property Handled As Boolean
屬性值
Boolean
bool
true 表示事件系統不應該進一步處理例外狀況,以將例外狀況標示為已處理;否則為 false。
備註
請勿定期將此值設定為 true,這不一定是安全的,而且不保證應用程式仍不會終止。 For more info, see Exception handling for in C# or Visual Basic and Remarks in UnhandledException.