You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: extend-fiddler/extendwithdotnet.md
+2-3Lines changed: 2 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -25,11 +25,10 @@ See [Build extension assemblies to run in both Fiddler Classic versions 2 and 4]
25
25
Debugging
26
26
---------
27
27
28
-
+ To ensure that exceptions and other extension-related errors are not silently caught: [set][1] the [fiddler.debug.extensions.showerrors][2] preference to **True**.
29
-
+ To output logging information to the **Log** tab: [set][1] the [fiddler.debug.extensions.verbose][2]
28
+
+ To ensure that exceptions and other extension-related errors are not silently caught: [set][1] the `fiddler.debug.extensions.showerrors` preference to **True**.
29
+
+ To output logging information to the **Log** tab: [set][1] the `fiddler.debug.extensions.verbose`
30
30
31
31
[1]: http://fiddler.wikidot.com/prefsaction
32
-
[2]: http://fiddler.wikidot.com/prefslist
33
32
34
33
Direct Fiddler Classic to load extension assemblies
*http://www.example.com/path/q=Query** (No Match - substring different)
81
+
*`http://www.example.com/path/q=Query` (No Match - substring different)
76
82
77
83
78
84
### Method Match
79
85
80
86
#### **METHOD:GET EXACT:http://example.com/path**
81
-
* Matches only **GET** requests to http://example.com/path
87
+
* Matches only **GET** requests to `http://example.com/path`
82
88
83
89
84
90
### Regular Expressions
85
91
86
92
Fiddler Classic supports regular expression syntax for expressions which begin with **regex**. The regular expression will be used to replace the inbound URL with the string in the Actions column. Use .+ to match a sequence of one or more characters, or .* to match zero or more characters. Use ^ at the front of your regex to mean "Start of the URL" and use $ at the tail of the regex to mean "End of the URL."
*`http://www.example.com/Path1/query=foo.bmp&bar` (No Match - improper ending)
113
+
*`http://www.example.com/Path1/query=example.gif`
114
+
*`http://www.example.com/Path1/query=example.Gif`
115
+
*`http://www.example.com/Path1/query=example.bmp`
110
116
111
117
Got a great regular expression to share? Please send it to me using the "Contact" link at the top-right side of this page!
112
118
You can learn more about regular expressions [here](http://www.regular-expressions.info/quickstart.html).
@@ -153,7 +159,7 @@ Close the client connection immediately without sending a response.
153
159
### *exit
154
160
Stop processing rules at this point.
155
161
156
-
For rules whose match action is a regular expression, you can use Regular Expression Replacement Group expressions in the Action string to copy content from the Inbound URL to the action string.[Learn more...](https://blogs.msdn.com/b/fiddler/archive/2012/01/09/fiddler-2.3.8.2-beta-views-woff-mp3-h264-datauris-and-autoresponder-supports-regular-expression-groups.aspx)
162
+
For rules whose match action is a regular expression, you can use Regular Expression Replacement Group expressions in the Action string to copy content from the Inbound URL to the action string.
157
163
158
164
Rules with Non-final actions will allow the request to match multiple AutoResponder rules. As soon a rule specifying a final action is reached, the matching process exits and no further rules are processed for that session.
Copy file name to clipboardExpand all lines: knowledge-base/headers.md
+2-9Lines changed: 2 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -34,27 +34,20 @@ Date the response expires and should no longer be used by a cache. See [http://
34
34
35
35
Note that the O'Reilly book (and many other places, including IE) implement this incorrectly! See [http://www.mnot.net/cache_docs/][6] or [RFC2616][7].
36
36
37
-
38
-
39
37
**P3P**
40
38
41
-
Compact P3P Privacy statement. See [http://www.p3pwriter.com/LRN_111.asp][8] for a description of the token meanings. See also [Info on IE6's Privacy features and impact on HTTP Cookies][9].
42
-
43
-
39
+
Compact P3P Privacy statement. For more information refer to [IE6's Privacy features and impact on HTTP Cookies][8].
44
40
45
41
**Set-Cookie**
46
42
47
43
Info on IE's Privacy features and impact on HTTP Cookies
0 commit comments