Using the WebClient .SetValue() I add several parameters and then fetch the URL. How do I clear the internal list of parameters that were added with SetValue()?
I tried:
MyWebClient.Start()
If I first run this
MyWebClient.SetValue('parm1', 'my text')
MyWebClient.Fetch('
http://someurl')
Then after the PageReceived I run this
MyWebClient.Start()
MyWebClient.SetAllHeadersDefault()
MyWebClient.Fetch('
http://someotherurl')
I can see in the logs that parm1 was added to the fetched URL. I can probably solve this with MyWebClient.DeleteValue('Parm1') but was wondering then what .Start() was for. And if I do a .Start() do I still need to do .SetAllHeadersDefault()?