如何使用 Net.Sockets 通过 LAN 发送短信
有人知道如何用C#通过LAN电缆发送短信吗?
我知道如何通过 Internet 使用 Net.Sockets 来完成此操作,但如何通过 LAN 发送数据?
Does anybody know how to send text message in C# by LAN cable?
I know how to do it by Internet with Net.Sockets, but how can I send data over a LAN?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是相同的处理(事实上,完全相同),只不过不是指定远程地址,而是指定 LAN 中另一台计算机的地址。在大多数家庭网络中,这通常是以
192.168
开头的地址。或10.0
。It is the same deal (in fact, exactly the same), except instead of specifying a remote address, specify the address of another machine in your LAN. On most home networks, this is usually an address that begins with
192.168
. or10.0
.