Commit a5fe0681 a5fe0681b7ca0a14606429d6bdb61f7163ae8eb0 by Christian Gerdes

Force UrlEncoded Cookies now also runs on Dependent Requests

1 parent 80f74fe6
......@@ -53,6 +53,10 @@ namespace LIL_VSTT_Plugins
}
}
}
foreach (WebTestRequest w in e.Request.DependentRequests)
{
w.PostRequest += new EventHandler<PostRequestEventArgs>(this.PostRequest);
}
}
}
......