首页 > 解决方案 > 试图在 Chrome 中查看 DOM。无法找到接收 SuperSocket 错误

问题描述

我有一个 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;  
        }  
    }  
}  
}

标签: c#c#-4.0visual-studio-2013supersocket.net

解决方案


你是对的,依赖关系似乎搞砸了。

您需要安装以下 nuget 包:

  1. 超级插座
  2. 超级套接字.WebSocket
  3. SuperSocket.Engine

另外请在您的代码中添加以下内容:

using SuperSocket.WebSocket;

告诉库的维护者他的示例没有编译可能是个好主意。


推荐阅读