DataAsyncCommandFailureEventHandler Delegate

Definition

Represents the method that is called when an asynchronous command fails.

public delegate void DataAsyncCommandFailureEventHandler(Exception ^ e, bool nonFatal);
public delegate void DataAsyncCommandFailureEventHandler(Exception e, bool nonFatal);
type DataAsyncCommandFailureEventHandler = delegate of Exception * bool -> unit
Public Delegate Sub DataAsyncCommandFailureEventHandler(e As Exception, nonFatal As Boolean)

Parameters

e
Exception

The exception that occurs to cause the command failure.

nonFatal
Boolean

An indication if the failure is non-fatal; that is, that the command continues to run after this method returns.

Applies to