Class PrefChangeEventArgs
EventArgs for preference-change events. See http://msdn.microsoft.com/en-us/library/ms229011.aspx.
Inheritance
Namespace: Fiddler
Assembly: FiddlerCore.dll
Syntax
public class PrefChangeEventArgs : EventArgs
Properties
PrefName
The name of the preference being added, changed, or removed
Declaration
public string PrefName { get; }
Property Value
System.String
|
ValueBool
Returns TRUE if ValueString=="true", case-insensitively
Declaration
public bool ValueBool { get; }
Property Value
System.Boolean
|
ValueString
The string value of the preference, or null if the preference is being removed
Declaration
public string ValueString { get; }
Property Value
System.String
|