Force UrlEncoded Cookies now also runs on Dependent Requests
Showing
1 changed file
with
4 additions
and
0 deletions
| ... | @@ -53,6 +53,10 @@ namespace LIL_VSTT_Plugins | ... | @@ -53,6 +53,10 @@ namespace LIL_VSTT_Plugins |
| 53 | } | 53 | } |
| 54 | } | 54 | } |
| 55 | } | 55 | } |
| 56 | foreach (WebTestRequest w in e.Request.DependentRequests) | ||
| 57 | { | ||
| 58 | w.PostRequest += new EventHandler<PostRequestEventArgs>(this.PostRequest); | ||
| 59 | } | ||
| 56 | } | 60 | } |
| 57 | } | 61 | } |
| 58 | 62 | ... | ... |
-
Please register or sign in to post a comment