Class ProgressCallbackEventArgs
EventArgs class for the ISessionImporter and ISessionExporter interface callbacks
Inheritance
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.Single
flCompletionRatio
Float indicating completion ratio, 0.0 to 1.0. Set to 0 if unknown. |
System.String
sProgressText
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.Boolean
|
PercentComplete
The percentage completed
Declaration
public int PercentComplete { get; }
Property Value
System.Int32
|
ProgressText
The string message of the notification
Declaration
public string ProgressText { get; }
Property Value
System.String
|