Class ResponderItem
Base class for the responder rules and groups. Contains common properties like Id and Parent.
Inheritance
Namespace: Fiddler
Assembly: FiddlerCore.dll
Syntax
public class ResponderItem : Object
Properties
Id
Unique id for this rule or group
Declaration
public string Id { get; set; }
Property Value
System.
|
IsEnabled
Is the rule or group enabled or not
Declaration
public bool IsEnabled { get; set; }
Property Value
System.
|
Name
The rule or group name, visible to the user
Declaration
public string Name { get; set; }
Property Value
System.
|
Parent
The parent group, or null if there is no parent (i.e. item is on root level)
Declaration
public ResponderGroup Parent { get; set; }
Property Value
Priority
The order of the rule or group in its parent collection (another group or the root level)
Declaration
public int Priority { get; set; }
Property Value
System.
|