SEHException.CanResume Method

Definition

Indicates whether the exception can be recovered from, and whether the code can continue from the point at which the exception was thrown.

public:
 virtual bool CanResume();
public virtual bool CanResume ();
abstract member CanResume : unit -> bool
override this.CanResume : unit -> bool
Public Overridable Function CanResume () As Boolean

Returns

Always false, because resumable exceptions are not implemented.

Remarks

If CanResume returns true, then a filtered exception handler can correct the problem that caused the exception, and the code will continue from the point at which the exception was thrown.

Applies to