资源简介
LIS HL7 深圳迈瑞血常规通讯接口
TCP/IP 连接LIS仪器,本实例单通,
代码片段和文件信息
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Net.Sockets;
using System.Net;
using System.Globalization;
using System.Threading;
namespace TCPClient
{
///
/// 异步TCP客户端
///
public class AsyncTcpClient : IDisposable
{
#region Fields
private TcpClient tcpClient;
private bool disposed = false;
private int retries = 0;
#endregion
#region Ctors
///
/// 异步TCP客户端
///
/// 远端服务器终结点
public AsyncTcpClient(IPEndPoint remoteEP)
: this(new[] { remoteEP.Address } remoteEP.Port)
{
}
///
/// 异步TCP客户端
///
/// 远端服务器终结点
/// 本地客户端终结点
public AsyncTcpClient(IPEndPoint remoteEP IPEndPoint localEP)
: this(new[] { remoteEP.Address } remoteEP.Port localEP)
{
}
///
/// 异步TCP客户端
///
/// 远端服务器IP地址
/// 远端服务器端口
public AsyncTcpClient(IPAddress remoteIPAddress int remotePort)
: this(new[] { remoteIPAddress } remotePort)
{
}
///
/// 异步TCP客户端
///
/// 远端服务器IP地址
/// 远端服务器端口
/// 本地客户端终结点
public AsyncTcpClient(
IPAddress remoteIPAddress int remotePort IPEndPoint localEP)
: this(new[] { remoteIPAddress } remotePort localEP)
{
}
///
/// 异步TCP客户端
///
/// 远端服务器主机名
/// 远端服务器端口
public AsyncTcpClient(string remoteHostName int remotePort)
: this(Dns.GetHostAddresses(remoteHostName) remotePort)
{
}
///
/// 异步TCP客户端
///
/// 远端服务器主机名
/// 远端服务器端口
/// 本地客户端终结点
public AsyncTcpClient(
string remoteHostName int remotePort IPEndPoint localEP)
: this(Dns.GetHostAddresses(remoteHostName) remotePort localEP)
{
}
///
/// 异步TCP客户端
///
/// 远端服务器IP地址列表
/// 远端服务器端口
public AsyncTcpClient(IPAddress[] remoteIPAddresses int remotePort)
: this(remoteIPAddresses remotePort null)
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
..A..H. 92160 2020-09-30 11:13 C#Socket血常规\TCPClient\.vs\TCPClient\v15\.suo
文件 0 2019-12-22 20:33 C#Socket血常规\TCPClient\.vs\TCPClient\v15\Server\sqlite3\db.lock
文件 4096 2019-12-22 20:33 C#Socket血常规\TCPClient\.vs\TCPClient\v15\Server\sqlite3\storage.ide
文件 32768 2020-09-14 08:47 C#Socket血常规\TCPClient\.vs\TCPClient\v15\Server\sqlite3\storage.ide-shm
文件 3077672 2020-09-14 09:08 C#Socket血常规\TCPClient\.vs\TCPClient\v15\Server\sqlite3\storage.ide-wal
文件 14267 2016-03-09 13:39 C#Socket血常规\TCPClient\AsyncTcpClient\AsyncTcpClient.cs
文件 2568 2016-03-09 15:24 C#Socket血常规\TCPClient\AsyncTcpClient\AsyncTcpClient.csproj
文件 13312 2020-09-14 08:50 C#Socket血常规\TCPClient\AsyncTcpClient\bin\Debug\AsyncTcpClient.dll
文件 34304 2020-09-14 08:50 C#Socket血常规\TCPClient\AsyncTcpClient\bin\Debug\AsyncTcpClient.pdb
文件 42 2020-09-14 08:46 C#Socket血常规\TCPClient\AsyncTcpClient\obj\Debug\AsyncTcpClient.csproj.CoreCompileInputs.cache
文件 1481 2020-09-14 08:50 C#Socket血常规\TCPClient\AsyncTcpClient\obj\Debug\AsyncTcpClient.csproj.FileListAbsolute.txt
文件 7574 2020-09-14 08:46 C#Socket血常规\TCPClient\AsyncTcpClient\obj\Debug\AsyncTcpClient.csprojAssemblyReference.cache
文件 13312 2020-09-14 08:50 C#Socket血常规\TCPClient\AsyncTcpClient\obj\Debug\AsyncTcpClient.dll
文件 34304 2020-09-14 08:50 C#Socket血常规\TCPClient\AsyncTcpClient\obj\Debug\AsyncTcpClient.pdb
文件 6486 2020-09-14 08:57 C#Socket血常规\TCPClient\AsyncTcpClient\obj\Debug\DesignTimeResolveAssemblyReferencesInput.cache
文件 1370 2016-03-09 10:29 C#Socket血常规\TCPClient\AsyncTcpClient\Properties\AssemblyInfo.cs
文件 977 2016-03-09 10:30 C#Socket血常规\TCPClient\AsyncTcpClient\TcpDatagramReceivedEventArgs.cs
文件 1720 2016-03-09 10:30 C#Socket血常规\TCPClient\AsyncTcpClient\TcpServerConnectedEventArgs.cs
文件 1726 2016-03-09 10:30 C#Socket血常规\TCPClient\AsyncTcpClient\TcpServerDisconnectedEventArgs.cs
文件 2020 2016-03-09 10:30 C#Socket血常规\TCPClient\AsyncTcpClient\TcpServerExceptionOccurredEventArgs.cs
文件 13312 2020-09-14 08:50 C#Socket血常规\TCPClient\TCPClient\bin\Debug\AsyncTcpClient.dll
文件 34304 2020-09-14 08:50 C#Socket血常规\TCPClient\TCPClient\bin\Debug\AsyncTcpClient.pdb
文件 12800 2020-09-14 09:08 C#Socket血常规\TCPClient\TCPClient\bin\Debug\TCPClient.exe
文件 22016 2020-09-14 09:08 C#Socket血常规\TCPClient\TCPClient\bin\Debug\TCPClient.pdb
文件 11600 2016-03-09 23:16 C#Socket血常规\TCPClient\TCPClient\bin\Debug\TCPClient.vshost.exe
文件 5298 2020-09-14 09:08 C#Socket血常规\TCPClient\TCPClient\ClientForm.cs
文件 7344 2020-09-14 09:08 C#Socket血常规\TCPClient\TCPClient\ClientForm.Designer.cs
文件 5817 2020-09-14 09:08 C#Socket血常规\TCPClient\TCPClient\ClientForm.resx
文件 3431 2020-09-14 08:46 C#Socket血常规\TCPClient\TCPClient\obj\x86\Debug\DesignTimeResolveAssemblyReferences.cache
文件 7207 2020-09-14 08:46 C#Socket血常规\TCPClient\TCPClient\obj\x86\Debug\DesignTimeResolveAssemblyReferencesInput.cache
............此处省略141个文件信息
- 上一篇:MES系统信息上传
- 下一篇:c# EasyModbus Client
相关资源
- 电子秤重量读取(串口通讯)
- C#与西门子1500通讯59060
-
欧姆龙PLC通讯程序源码(HOST li
nk 实 - POSTEK二次开发接口
- 自动属性,接口、类的继承
- 松下PLC 通讯(modbus)
- socket通讯实例(入门级)58873
- C#多线程以及Socket通讯
- c# 串口通讯的(收发数据)
- C#-与西门子1200-1500-S7通讯(源码+文档
- Csharp串口通讯
- TCP/IP通讯 (附服务端以及客户端)
- C# 实现 信捷PLC通讯协议
- C# SHAP7与西门子PLC通讯及模拟
- 物联网设备通讯协议实现客户端(I
- udp通讯(需修改客户端链接服务端时
- 网络通讯程序源码(附客户端以及服
- 串口通讯工具源码
- C#串口通讯
- 简单tcp 通讯网口工具客户端
- 梅特里托利多天平称XP系列指令通讯
- 快递接口(C#源码以及文档)
- Modbus通讯 串口通讯
- C# 串口通讯源码(简易串口助手)
- MODBUS通讯(TCP/Rtu)
- C#通讯调试工具源码
- 纯C#的DICOM读取和通讯
- 松下PLC与C#通讯串口调试入门教程.z
- C#串口通讯代码
- 用C#实现PC与西门子PLC串行通讯
评论
共有 条评论