Chronos Plugins  5.2.0
This documentation covers the plugin interfaces definitions and an example implementation.
AxelSemrau.Chronos.Plugin.InteractiveErrorHandlingEventArgs Class Reference

Everything needed for showing the error dialog / reacting on input. More...

+ Inheritance diagram for AxelSemrau.Chronos.Plugin.InteractiveErrorHandlingEventArgs:
+ Collaboration diagram for AxelSemrau.Chronos.Plugin.InteractiveErrorHandlingEventArgs:

Properties

bool RetryLastAction = false [get, set]
 Will be set by the error dialog if "ask user" was configured and the user picked the "Retry" option. More...
 
string Error [get, set]
 A description of the problem that is shown to the user. More...
 
ErrorType ErrorType [get, set]
 Try to classify your error. This will in most cases be left at "Other". More...
 

Detailed Description

Everything needed for showing the error dialog / reacting on input.

If there are other options that make sense for your device, please let us know. Currently there's only the alternatives retry/abort

Definition at line 321 of file DeviceInterfaces.cs.

Property Documentation

◆ Error

string AxelSemrau.Chronos.Plugin.InteractiveErrorHandlingEventArgs.Error
getset

A description of the problem that is shown to the user.

Definition at line 331 of file DeviceInterfaces.cs.

331 { get; set; }

◆ ErrorType

ErrorType AxelSemrau.Chronos.Plugin.InteractiveErrorHandlingEventArgs.ErrorType
getset

Try to classify your error. This will in most cases be left at "Other".

Definition at line 336 of file DeviceInterfaces.cs.

336 { get; set; }

◆ RetryLastAction

bool AxelSemrau.Chronos.Plugin.InteractiveErrorHandlingEventArgs.RetryLastAction = false
getset

Will be set by the error dialog if "ask user" was configured and the user picked the "Retry" option.

Definition at line 326 of file DeviceInterfaces.cs.

326 { get; set; } = false;

The documentation for this class was generated from the following file: