Class ProgressCallbackEventArgs
EventArgs class for the ISessionImporter and ISessionExporter interface callbacks
Inheritance
System.Object
ProgressCallbackEventArgs
Namespace: Fiddler
Assembly: FiddlerCore.dll
Syntax
public class ProgressCallbackEventArgs : EventArgs
Constructors
ProgressCallbackEventArgs(Single, String)
Progress Callback
Declaration
public ProgressCallbackEventArgs(float flCompletionRatio, string sProgressText)
Parameters
System. Float indicating completion ratio, 0.0 to 1.0. Set to 0 if unknown. |
System. Short string describing current operation, progress, etc |
Properties
Cancel
Set to TRUE to request that Import/Export process be aborted as soon as convenient
Declaration
public bool Cancel { get; set; }
Property Value
System.
|
PercentComplete
The percentage completed
Declaration
public int PercentComplete { get; }
Property Value
System.
|
ProgressText
The string message of the notification
Declaration
public string ProgressText { get; }
Property Value
System.
|