DataAsyncCommandFailureEventHandler Delegate
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
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.