Click or drag to resize

BotEventsOnBotStopRequested Event

Fired when a bot stop is requested.

Only use this event to signal that a 'Stop' should be canceled. In general use the OnBotStopped event.

Namespace:  ff14bot.NeoProfile
Assembly:  RebornBuddy (in RebornBuddy.exe) Version: 3.3.1; net-4.5.win32; release
Syntax
C#
public static event BotEventsOnBotStartStopRequestedDelegate OnBotStopRequested

Value

Type: ff14bot.NeoProfileBotEventsOnBotStartStopRequestedDelegate
Remarks

This is fired from the thread that invoked the Stop(String) call.

To cancel the stop, a subscriber can set Cancel to false.

No cleanup should be done in this event, as it is impossible to know whether the stop will go through, because a following subscriber might cancel the stop.

See Also