控制 HttpWebRequest 中使用的连接
是否可以对用于 HttpWebRequest 的连接进行任何类型的控制?我使用 BindIPEndPointDelegate 属性来设置要绑定请求的 IP。然而,我想要有 5 个保持活动的连接,这些连接通过所有使用不同的 IP 进行循环。
或者是否有某种方法可以将连接上下文化/划分,以便我可以专门说“使用此保持活动连接”?
Is it possible to have any sort of control over the connection used for a HttpWebRequest? I use the BindIPEndPointDelegate property to set the IP to bind the request to. However I want to have 5 keep-alive connections that get round-robined through that all use different IPs.
Or is there some sort of way I could contextualize/compartmentalize the connections so that I can say "use this keep-alive connection" specifically?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看起来像在 HttpWebRequests 上设置 ConnectionGroupName 属性会池化该字符串上的连接。
It looks like setting the ConnectionGroupName property on the HttpWebRequests pools the connections keyed on that string.