How to use http post with proxy support in c#

后端 未结 3 1115
面向向阳花
面向向阳花 2020-12-28 21:39

How to use http post with proxy support in c# and multipart form data upload method

3条回答
  •  鱼传尺愫
    2020-12-28 22:33

    This post by Brian Grinstead explains how you can do just that.

    For proxy support, you only need to pass a Proxy setting to HttpWebRequest. So, in the above example, you would change:

    HttpWebRequest request = WebRequest.Create(postUrl) as HttpWebRequest;
    

    To:

    string MyProxyHostString = "192.168.1.200";
    int MyProxyPort = 8080;
    
    HttpWebRequest request = WebRequest.Create(postUrl) as HttpWebRequest;
    request.Proxy = new WebProxy (MyProxyHostString, MyProxyPort);
    

提交回复
热议问题