如何在 C# 中的 Post WebRequest 中设置客户端名称和引用者?
如何在 C# 中的 Post WebRequest 中设置客户端名称和引用者?
How to set client name and referrer in the Post WebRequest in C#?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不太确定客户端名称,但对于引用者,您可以使用 标题属性 添加这些信息。
有关详细信息和示例,请参阅 WebHeaderCollection 类标头类型。
您可以考虑将 HttpWebRequest 与 Referer 属性一起使用 以及其他。
I'm not too sure about Client Name, but for Referer, you can use the Headers property to add these info.
See the WebHeaderCollection Class for more information and example of header types.
You can consider using HttpWebRequest with the Referer Property and others as well.