C# Telegram 机器人有一个 "exception unhandled"
C# Telegram bot has an "exception unhandled"
如何在 C# 中解决这个问题?
异常:
connected party did not properly respond after a period of time, or established connection failed because connected host has failed
有很多种可能性,但最有可能的就是它所说的 - 您的程序无法连接到 10.10.34.35 端口 443。防火墙、路由、DNS 或只是输入错误的 IP 地址都是可能的。诊断此问题的最佳方法是打开 Powershell 并键入
测试网络连接-计算机 10.10.34.35-端口 443
这将测试您的计算机是否可以连接到该 TCP 端点。如果 Powershell 无法连接,那么您的问题不在您的 C# 中,而是网络问题。
如何在 C# 中解决这个问题?
异常:
connected party did not properly respond after a period of time, or established connection failed because connected host has failed
有很多种可能性,但最有可能的就是它所说的 - 您的程序无法连接到 10.10.34.35 端口 443。防火墙、路由、DNS 或只是输入错误的 IP 地址都是可能的。诊断此问题的最佳方法是打开 Powershell 并键入
测试网络连接-计算机 10.10.34.35-端口 443
这将测试您的计算机是否可以连接到该 TCP 端点。如果 Powershell 无法连接,那么您的问题不在您的 C# 中,而是网络问题。