本文整理匯總了C#中System.IO.Ports.SerialPort.GetClient方法的典型用法代碼示例。如果您正苦於以下問題:C# SerialPort.GetClient方法的具體用法?C# SerialPort.GetClient怎麽用?C# SerialPort.GetClient使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類System.IO.Ports.SerialPort
的用法示例。
在下文中一共展示了SerialPort.GetClient方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。
示例1: BtnConnectClick
private void BtnConnectClick(object sender, EventArgs e)
{
try
{
switch (CommunicationMode)
{
case CommunicationMode.RTU:
_uart = new SerialPort(PortName, Baud, Parity, DataBits, StopBits);
_uart.Open();
_portClient = _uart.GetClient();
_driver = new ModbusClient(new ModbusRtuCodec()) { Address = SlaveId };
_driver.OutgoingData += DriverOutgoingData;
_driver.IncommingData += DriverIncommingData;
AppendLog(String.Format("Connected using RTU to {0}", PortName));
break;
case CommunicationMode.UDP:
_socket = new Socket(AddressFamily.InterNetwork, SocketType.Dgram, ProtocolType.Udp);
_socket.Connect(new IPEndPoint(IPAddress, TCPPort));
_portClient = _socket.GetClient();
_driver = new ModbusClient(new ModbusTcpCodec()) { Address = SlaveId };
_driver.OutgoingData += DriverOutgoingData;
_driver.IncommingData += DriverIncommingData;
AppendLog(String.Format("Connected using UDP to {0}", _socket.RemoteEndPoint));
break;
case CommunicationMode.TCP:
_socket = new Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp);
_socket.SetSocketOption(SocketOptionLevel.Tcp, SocketOptionName.NoDelay, true);
_socket.SendTimeout = 2000;
_socket.ReceiveTimeout = 2000;
_socket.Connect(new IPEndPoint(IPAddress, TCPPort));
_portClient = _socket.GetClient();
_driver = new ModbusClient(new ModbusTcpCodec()) { Address = SlaveId };
_driver.OutgoingData += DriverOutgoingData;
_driver.IncommingData += DriverIncommingData;
AppendLog(String.Format("Connected using TCP to {0}", _socket.RemoteEndPoint));
break;
}
}
catch (Exception ex)
{
AppendLog(ex.Message);
return;
}
btnConnect.Enabled = false;
buttonDisconnect.Enabled = true;
groupBoxFunctions.Enabled = true;
groupBoxTCP.Enabled = false;
groupBoxRTU.Enabled = false;
groupBoxMode.Enabled = false;
grpExchange.Enabled = false;
}