史努比的 C# 等价物

发布于 2024-08-30 03:43:20 字数 153 浏览 3 评论 0原文

Snoopy 是一个提供 Web 浏览器功能的 PHP 类。 C# 中是否有类似的功能?我在处理 cookie 等方面遇到很多麻烦。

Snoopy is a PHP class that provides the functionality of a web-browser. Is there anything that does the same in C#? I'm having lots of trouble with handling cookies, etc.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

初见你 2024-09-06 03:43:20

你需要史努比什么? C# 中有一个 WebBrowser 类

不要具体说明 cookie 给您带来的问题,所以这是我现在能做的最好的部分:

What about Snoopy do you need? There is a WebBrowser Class in C#

You don't specify what about cookies are giving you problems, so this is the best I can do for now for that part:

哆啦不做梦 2024-09-06 03:43:20

最简单的事情是 HttpWebRequest - 你创建一个像这样的:

HttpWebRequest myReq = (HttpWebRequest)WebRequest.Create("http://www.example.com/");
//set request properties

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

然后你可以设置标头、cookie 等。你可以编写你自己的包装类来给它一个类似于 Snoopy 的接口。

The simplest thing would be HttpWebRequest - you create one like this:

HttpWebRequest myReq = (HttpWebRequest)WebRequest.Create("http://www.example.com/");
//set request properties

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

And you can then set headers, cookies etc. You could write your own wrapper class to give it an interface similar to Snoopy.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文