尝试使用 Rug.OSC 连接到 Web 套接字会引发异常

发布于 2025-01-11 03:11:38 字数 728 浏览 0 评论 0原文

.NET核心3.1 错误:

Exception thrown: 'System.Net.Sockets.SocketException' in System.Net.Sockets.dll
Exception thrown: 'System.Net.Sockets.SocketException' in System.Private.CoreLib.dll
An unhandled exception of type 'System.Net.Sockets.SocketException' occurred in System.Private.CoreLib.dll
An attempt was made to access a socket in a way forbidden by its access permissions.

代码:

 IPAddress address = IPAddress.Parse("127.0.0.1");
                int port = 9000;
                OscSender sender = new OscSender(address, port);
                sender.Connect();
                Console.WriteLine("Setting up notification listeners...");

这是一个控制台应用程序,我需要添加一些权限吗?

.NET Core 3.1
Error:

Exception thrown: 'System.Net.Sockets.SocketException' in System.Net.Sockets.dll
Exception thrown: 'System.Net.Sockets.SocketException' in System.Private.CoreLib.dll
An unhandled exception of type 'System.Net.Sockets.SocketException' occurred in System.Private.CoreLib.dll
An attempt was made to access a socket in a way forbidden by its access permissions.

Code:

 IPAddress address = IPAddress.Parse("127.0.0.1");
                int port = 9000;
                OscSender sender = new OscSender(address, port);
                sender.Connect();
                Console.WriteLine("Setting up notification listeners...");

This is a console application, is there some permission I need to be adding?

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文