我有一个VisualStudio C#WindowFormApplication。我一直在尝试获取Chrome标签的DOM。我之前在这个网站上发现了一个帖子:Accessing the DOM of a Chrome Tab from Visual Studio
https://github.com/kerryjiang/SuperWebSocket/blob/master/Samples/BasicConsole/Program.cs
它详细说明了如何做到这一点。我将它滚动到我的程序中,我得到一个“SuperSocket”无法找到错误。必须有一个我在这里缺少的参考,但我无法确定它是什么。
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Diagnostics;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using System.Windows.Automation;
using SuperSocket.SocketBase;
namespace WindowsFormsApplication1
{
public partial class Form1 : System.Windows.Forms.Form
{
//Global Variables
public static class Globals
{
public static bool EditorWorking = false;
public static bool WEPrompts = true;
public static int EditorCheck = 1;
public static String FuncError = "Form_Load";
public static String NeedToUpload = "No";
}
//private System.Windows.Forms.NotifyIcon notifyIcon1;
//private System.Windows.Forms.ContextMenu contextMenu1;
//private System.Windows.Forms.MenuItem menuItem1;
//private System.ComponentModel.IContainer components;
public Form1()
{
//InitializeComponent();
StartSuperWebSocket();
//CreateTrayIcon();
}
private void StartSuperWebSocket()
{
var appServer = new WebSocketServer();
//Setup the appServer
if (!appServer.Setup(2012)) //Setup with listening port
{
Console.WriteLine("Failed to setup!");
Console.ReadKey();
return;
}
appServer.NewMessageReceived += new SessionHandler<WebSocketSession, string>(appServer_NewMessageReceived);
Console.WriteLine();
//Try to start the appServer
if (!appServer.Start())
{
Console.WriteLine("Failed to start!");
Console.ReadKey();
return;
}
}
}
}
你是对的,依赖关系似乎搞砸了。
您需要安装以下nuget包:
- SuperSocket
- SuperSocket.WebSocket
- SuperSocket.Engine
另外,请在您的代码中添加以下内容:
using SuperSocket.WebSocket;
告诉图书馆的维护者他的例子没有编译可能是一个好主意。