作者:潇洒D-An_na | 来源:互联网 | 2023-08-09 02:37
这个问题已经在这里有了答案: C#networkconnectionrunningfromshareddrive
这个问题已经在这里有了答案: > C# network connection running from shared drive 1个
我几天前也问过类似的问题.那时,我正在尝试使用套接字.当前,我正在使用TCPClient为我完成脏套接字工作.我正在使用Windows 7和Visual Studios 2013 Professional.
原始和当前项目大纲:
我需要创建一个应用程序(使用C#的WinForms),该应用程序允许用户通过wifi连接到设备(将向其发送自变量/命令的硬件)(wifi是最终目标,但目前我想进行任何连接),然后向该设备发送消息.我知道一些C#和一些套接字/ IP的东西,但是不知道使用C#的套接字/ IP.程序的可视化GUI面不是我所要努力的.我似乎无法启动并运行TCPClient并进行任何真正的连接.我不断收到“提供了无效的参数”异常.
有关此特定问题的任何提示,或有关C#网络/ TCPClient / etc的帮助.受欢迎的.
我尝试通过以下每种方法创建新的TcpClient均未成功:
TcpClient tcpClient = new TcpClient();
TcpClient tcpClient = new TcpClient(family); // family is a created AddressFamily
TcpClient tcpClient = new TcpClient(clientIPAddress, clientPortNumber);
TcpClient tcpClient = new TcpClient(remoteEP); // remoteEP is a remote end point created by me
TcpClient tcpClient = new TcpClient(localEP); // localEP is a local end point
这些都是TCPClient类中的构造函数之一.这些都给了我以下例外:
提供了无效的参数
堆栈跟踪:
at System.Net.Sockets.Socket..ctor(AddressFamily addressFamily, SocketType socketType, ProtocolType protocolType)\r\n at System.Net.Sockets.TcpClient.initialize()\r\n at System.Net.Sockets.TcpClient..ctor(AddressFamily family)\r\n at System.Net.Sockets.TcpClient..ctor()\r\n at ConnectLite.ConnectLite.MakeConnection() in h:\Howard\Projects\ConnectLite\ConnectLite\Form1.cs:line 120
我确实拥有所有必要的导入和使用.
当我尝试在另一台计算机上运行该应用程序时,此问题变得很奇怪.在单独的计算机上,无论是在调试文件中运行不带Visual Studios的应用程序,还是在其他使用Visual Studios 2013的计算机上运行应用程序,应用程序都比异常带给我更多的优势,并且从未抛出异常.
我只是试图使用TCPClient进行一些简单的消息发送.但是,TCPClient阻止了我这样做.
当我使用套接字时,在创建新套接字时会抛出相同的异常.
Socket clientSocket =
new Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp);
你们中有人对此事有见识吗?
为简化起见,我将相关的代码片段放入控制台应用程序中以便于阅读.
有问题的简单代码块:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Net.Sockets;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleTestConnectLite
{
class Program
{
static void Main(string[] args)
{
try
{
TcpClient tcpClient = new TcpClient();
}
catch (SocketException e)
{
Console.WriteLine(e.Message);
Console.WriteLine("Error: " + e.StackTrace);
Console.WriteLine(e.Message + ". Error Code: " + e.ErrorCode.ToString());
}
}
}
}
控制台输出:
An invalid argument was supplied
Error: at System.Net.Sockets.Socket..ctor(AddressFamily addressFamily, Socket
Type socketType, ProtocolType protocolType)
at System.Net.Sockets.TcpClient.initialize()
at System.Net.Sockets.TcpClient..ctor(AddressFamily family)
at System.Net.Sockets.TcpClient..ctor()
at ConsoleTestConnectLite.Program.Main(String[] args) in h:\Howard\Projects\ConsoleTestConnectLite\ConsoleTestConnectLite\Program.cs:line 17
An invalid argument was supplied. Error Code: 10022
Press any key to continue . . .
解决方法:
如果您的代码放在网络驱动器上,则会收到该错误.将代码移动到本地计算机将解决此问题.