Class SessionMatch
An object used to match sessions in filters and rules
Inheritance
Namespace: FiddlerCore.Common.SessionMatch
Assembly: FiddlerCore.dll
Syntax
public class SessionMatch : Object
Constructors
SessionMatch()
Declaration
public SessionMatch()
Properties
CaseInsensitiveKey
Show if the key comparison is case-insensitive
Declaration
public bool CaseInsensitiveKey { get; set; }
Property Value
System.
|
CaseInsensitiveValue
Show if the value comparison is case-insensitive
Declaration
public bool CaseInsensitiveValue { get; set; }
Property Value
System.
|
Condition
Used for the compare condition (equal, contains, regular expression, etc.)
Declaration
public string Condition { get; set; }
Property Value
System.
|
Enabled
Is the match enabled
Declaration
public bool Enabled { get; set; }
Property Value
System.
|
Key
Used to denote header/cookie name
Declaration
public string Key { get; set; }
Property Value
System.
|
Type
The match condition type
Declaration
public SessionMatchType Type { get; set; }
Property Value
Value
The value to match (depending on the condition)
Declaration
public string Value { get; set; }
Property Value
System.
|
Methods
EmptyMatch()
Get a session match object used to quickly create new ones
Declaration
public static SessionMatch EmptyMatch()
Returns
Session The default session match condition value |