I am trying to create a GET request to a REST webservice that reuires an Authorization token as a querystring parameter. So, The request needs to be in the format:
http://endpoint.com/action/resource?Auth=12345
I am drawing a blank as how to add the querystring to my HttpWebRequest without just building a string. Is there another (read: better) option?
Thanks in advance!