What IPC method should I use between Firefox extension and C# code running on the same machine?

后端 未结 4 1776
野性不改
野性不改 2021-01-03 05:49

I have a question about how to structure communication between a (new) Firefox extension and existing C# code.

The firefox extension will use configuration data and

4条回答
  •  走了就别回头了
    2021-01-03 06:24

    I would personally used named pipes to do the communication instead of sockets. They're very low overhead, and very reliable on Windows.

    This is very easy to use from C++ and from C#.

提交回复
热议问题