gpt4 book ai didi

c# - 我可以使用 .NET Framework 从指定的 ip 地址发送 webrequest 吗?

转载 作者:可可西里 更新时间:2023-11-01 08:19:26 28 4
gpt4 key购买 nike

我有一个有多个 IP 地址的服务器。现在我需要用 http 协议(protocol)与几个服务器通信。每个服务器只接受来 self 的服务器指定 ip 地址的请求。但是在 .NET 中使用 WebRequest(或 HttpWebRequest)时,请求对象会自动选择一个 ip 地址。无论如何,我找不到将请求与地址绑定(bind)的方法。

有什么办法吗?或者我必须自己实现一个 webrequest 类?

最佳答案

您需要使用 ServicePoint.BindIPEndPointDelegate 回调。

http://blogs.msdn.com/b/malarch/archive/2005/09/13/466664.aspx

The delegate is called before the socket associated with the httpwebrequest attempts to connect to the remote end.

public static IPEndPoint BindIPEndPointCallback(ServicePoint servicePoint, IPEndPoint remoteEndPoint, int retryCount)
{
Console.WriteLine("BindIPEndpoint called");
return new IPEndPoint(IPAddress.Any,5000);

}

public static void Main()
{

HttpWebRequest request = (HttpWebRequest) WebRequest.Create("http://MyServer");

request.ServicePoint.BindIPEndPointDelegate = new BindIPEndPoint(BindIPEndPointCallback);

HttpWebResponse response = (HttpWebResponse)request.GetResponse();

}

关于c# - 我可以使用 .NET Framework 从指定的 ip 地址发送 webrequest 吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4273462/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com