i have an C# WindowsForm Application. this Application get response from the target website. the target website is sensitive on cookies.i mean when i use different IP to connect to the target website if i removed browser cookies, target website know me as a new user and if i don't the target website know me as previous user. now i want get response from the target website by my Application. this is the main part of my Application(that get response from sites which doesn't sensitive on cookies)
HttpWebRequest Req = (HttpWebRequest)HttpWebRequest.Create(SiteBox.Text);
Req.Proxy = new WebProxy(Proxy.ToString());
Req.UserAgent = "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.108 Safari/537.36";
StreamReader Res = new StreamReader(((HttpWebResponse)Req.GetResponse()).GetResponseStream());
Res.ReadToEnd();
Res.Close();
How i can remove App cookies after response