Class
ProgressCallbackEventArgs

EventArgs class for the ISessionImporter and ISessionExporter interface callbacks

Definition

Namespace:Fiddler

Assembly:FiddlerCore.dll

Syntax:

cs-api-definition
public class ProgressCallbackEventArgs : EventArgs

Inheritance: objectEventArgsProgressCallbackEventArgs

Inherited Members EventArgs.Emptyobject.GetType()object.MemberwiseClone()object.ToString()object.Equals(object)object.Equals(object, object)object.ReferenceEquals(object, object)object.GetHashCode()

Constructors

ProgressCallbackEventArgs(float, string)

Progress Callback

Declaration

cs-api-definition
public ProgressCallbackEventArgs(float flCompletionRatio, string sProgressText)

Parameters

flCompletionRatio

float

Float indicating completion ratio, 0.0 to 1.0. Set to 0 if unknown.

sProgressText

string

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

cs-api-definition
public bool Cancel { get; set; }

Property Value

bool

PercentComplete

The percentage completed

Declaration

cs-api-definition
public int PercentComplete { get; }

Property Value

int

ProgressText

The string message of the notification

Declaration

cs-api-definition
public string ProgressText { get; }

Property Value

string