I want to create one proxy server in c# which will accept request from client and route the request with another real proxy and return result back to client.
For Example:
- Client send a request for www.google.com with proxy as my server IP.
- So, First this request will come to my proxy server.
- Then my proxy server need to route this request to google server with another proxy. So, the google would never the IP of client and my proxy server, it would be only knowing proxy address which is added by my proxy server.
- Result need to beck to client who originated the request.