共用方式為


UnhandledExceptionEventArgs.Handled 屬性

定義

取得或設定值,指出是否已處理例外狀況。

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.

適用於

另請參閱