Class ScheduledTasks
The ScheduledTasks class allows addition of jobs by name. It ensures that ONE instance of the named job will occur at some point in the future, between 0 and a specified max delay. If you queue multiple instances of the same-named Task, it's only done once.
Inheritance
Inherited Members
Namespace: Fiddler
Assembly: FiddlerCore.dll
Syntax
public static class ScheduledTasks
Methods
CancelWork(String)
Declaration
public static bool CancelWork(string sTaskName)
Parameters
System.String
sTaskName
|
Returns
System.Boolean
|
ScheduleWork(String, UInt32, SimpleEventHandler)
Declaration
public static bool ScheduleWork(string sTaskName, uint iMaxDelay, SimpleEventHandler workFunction)
Parameters
System.String
sTaskName
|
System.UInt32
iMaxDelay
|
SimpleEventHandler
workFunction
|
Returns
System.Boolean
|