How to force ipv6 or ipv4 for HttpWebRequest or WebRequest C#

只愿长相守 提交于 2019-12-01 07:34:28

问题


Coming from node.js I can do this to tell node.js to make the request using ipv6 vs ipv4

var http = require("http");
var options = {
  hostname: "google.com",
  family: 4, // set to 6 for ipv6
};
var req = http.request(options, function(res) {
  .. handle result here ..
});
req.write("");
req.end();

Setting family to 4 forces ipv4, setting it to 6 forces ipv6. Not setting it lets either work.

How can I do the same thing in C# (.NET 3.5)

I can think of one way which is to make a DNS request myself myself for the A or AAAA records, make a direct IP request and set the host: header. Is there a better way?


回答1:


You can use ServicePoint.BindIPEndPointDelegate.

var req = HttpWebRequest.Create(url) as HttpWebRequest;

req.ServicePoint.BindIPEndPointDelegate = (servicePount, remoteEndPoint, retryCount) =>
{
    if (remoteEndPoint.AddressFamily == System.Net.Sockets.AddressFamily.InterNetworkV6)
    {
        return new IPEndPoint(IPAddress.IPv6Any, 0);
    }

    throw new InvalidOperationException("no IPv6 address");
};


来源:https://stackoverflow.com/questions/37384945/how-to-force-ipv6-or-ipv4-for-httpwebrequest-or-webrequest-c-sharp

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!