Click or drag to resize
ApocDriverOnError Event
A multicast delegate. The error event Apoc publishes.

Namespace: Kettic.AspNet.Controls.Toolkit.Apoc
Assembly: Kettic.AspNet.Controls (in Kettic.AspNet.Controls.dll) Version: 2014.4.1129.0 (2014.04.1129.0)
Syntax
public event ApocDriverApocEventHandler OnError

Value

Type: Kettic.AspNet.Controls.Toolkit.ApocApocDriverApocEventHandler
Remarks
The method signature for this event handler should match the following:

                void ApocError(object driver, ApocEventArgs e);
                
The first parameter driver will be a reference to the active ApocDriver instance.
Examples
Subscribing to the 'error' event
[C#]
{ ApocDriver driver = ApocDriver.Make(); driver.OnError += new ApocDriver.ApocEventHandler(ApocError); ... }
See Also