91av视频/亚洲h视频/操亚洲美女/外国一级黄色毛片 - 国产三级三级三级三级

  • 大小: 0.70M
    文件類型: .rar
    金幣: 1
    下載: 0 次
    發布日期: 2024-06-15
  • 語言: C#
  • 標簽: 通訊??接口??

資源簡介

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個文件信息

評論

共有 條評論