/// <summary> /// Called when the error is resolved. /// </summary> /// <param name="action">The action.</param> protected void OnErrorResolved(ResolutionAction action) { ErrorResolved?.ThreadSafeInvoke(null, new ApiErrorTroubleshooterEventArgs(action)); }
/// <summary> /// Called when the error is unresolved. /// </summary> protected void OnErrorUnresolved() { ErrorResolved?.ThreadSafeInvoke(null, new ApiErrorTroubleshooterEventArgs()); }