WebClient:如何设置主机名(主机头)

本文关键字:主机 设置 何设置 WebClient | 更新日期: 2023-09-27 18:27:57

如何使用不同于URL中使用的WebClient设置Host标头值?例如,在中

webClient.OpenRead("http://192.168.10.10/");

主机头的值应该是"192.168.10.10",但我希望它是不同的(例如"example.org")。

WebClient:如何设置主机名(主机头)

地址必须具有URL格式

webClient.OpenRead("http://192.168.10.10");