资源简介
收藏,不可多得,大牛(匠心十年)写的异步TCP通讯类,优雅简洁,完美!收藏。附上简单调用例子,可直接编译运行。

代码片段和文件信息
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Net.Sockets;
using System.Net;
using System.Threading;
using System.Globalization;
namespace AsyncTcp
{
///
/// 异步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)
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 2357 2018-03-02 18:32 AsyncTcp\AsyncTcp\AsyncTcp.csproj
文件 227 2018-03-02 18:32 AsyncTcp\AsyncTcp\AsyncTcp.csproj.user
文件 19240 2018-03-03 08:35 AsyncTcp\AsyncTcp\AsyncTcpClient.cs
文件 15685 2018-03-03 08:35 AsyncTcp\AsyncTcp\AsyncTcpServer.cs
文件 18432 2018-03-03 08:58 AsyncTcp\AsyncTcp\bin\Debug\AsyncTcp.dll
文件 38400 2018-03-03 08:58 AsyncTcp\AsyncTcp\bin\Debug\AsyncTcp.pdb
文件 614 2018-03-03 08:58 AsyncTcp\AsyncTcp\obj\Debug\AsyncTcp.csproj.FileListAbsolute.txt
文件 1753 2018-03-03 08:58 AsyncTcp\AsyncTcp\obj\Debug\AsyncTcp.csprojResolveAssemblyReference.cache
文件 18432 2018-03-03 08:58 AsyncTcp\AsyncTcp\obj\Debug\AsyncTcp.dll
文件 38400 2018-03-03 08:58 AsyncTcp\AsyncTcp\obj\Debug\AsyncTcp.pdb
文件 5702 2018-03-03 08:58 AsyncTcp\AsyncTcp\obj\Debug\DesignTimeResolveAssemblyReferencesInput.cache
文件 1366 2018-03-02 18:31 AsyncTcp\AsyncTcp\Properties\AssemblyInfo.cs
文件 3490 2018-03-02 18:31 AsyncTcp\AsyncTcp.sln
..A..H. 42496 2018-03-03 09:17 AsyncTcp\AsyncTcp.suo
文件 18432 2018-03-03 08:58 AsyncTcp\Client\bin\Debug\AsyncTcp.dll
文件 38400 2018-03-03 08:58 AsyncTcp\Client\bin\Debug\AsyncTcp.pdb
文件 11264 2018-03-03 08:58 AsyncTcp\Client\bin\Debug\Client.exe
文件 24064 2018-03-03 08:58 AsyncTcp\Client\bin\Debug\Client.pdb
文件 11600 2018-03-03 09:17 AsyncTcp\Client\bin\Debug\Client.vshost.exe
文件 490 2014-01-13 21:31 AsyncTcp\Client\bin\Debug\Client.vshost.exe.manifest
文件 3883 2018-03-02 18:32 AsyncTcp\Client\Client.csproj
文件 2614 2018-03-03 08:57 AsyncTcp\Client\Form1.cs
文件 4511 2018-03-02 18:33 AsyncTcp\Client\Form1.Designer.cs
文件 5817 2018-03-02 18:33 AsyncTcp\Client\Form1.resx
文件 1336 2018-03-03 09:17 AsyncTcp\Client\obj\x86\Debug\Client.csproj.FileListAbsolute.txt
文件 975 2018-03-03 08:58 AsyncTcp\Client\obj\x86\Debug\Client.csproj.GenerateResource.Cache
文件 11264 2018-03-03 08:58 AsyncTcp\Client\obj\x86\Debug\Client.exe
文件 180 2018-03-03 08:58 AsyncTcp\Client\obj\x86\Debug\Client.Form1.resources
文件 24064 2018-03-03 08:58 AsyncTcp\Client\obj\x86\Debug\Client.pdb
文件 180 2018-03-03 08:58 AsyncTcp\Client\obj\x86\Debug\Client.Properties.Resources.resources
............此处省略61个文件信息
相关资源
- C#TCP通信协议
- C#TCP 通信(TCP发送16进制)
- C# Socket Tcp文件传输和文字聊天系统
- C# TCP通讯组件源代码
- C# TcpListener 例程(源码)
- C# Socket TCP通信
- c#实现Modbus tcp客户端
- c#与西门子s7-200 smart 通讯 S7TCPDLL.dll
- C# Modbus TCP通讯(S7200PLC)
- 使用Socket发送数据
- 服务器和客户端(TCP发送消息、发送
- TCP通信(支持发送文本和图片文件)
- modbus tcp 调试
- TcpClient C#2010读取PLC
- tcp和udp(Mina.net)
- Tcp/ip socket 服务器/客户端
- TCP/IP通讯 (附服务端以及客户端)
- 简单tcp 通讯网口工具客户端
- MODBUS通讯(TCP/Rtu)
- C# 使用 TcpClient,Socket 聊天
- tcp+udp完全c#通信封装
- Unity通过TCP接收服务端数据
- Unity和C#实现TCP网络聊天
- C#实现TCP服务端
- Modbus RTU TCP主站从站类库内有说明文档
- NModbusAPI说明文档中文的
- 基于TCP网络通信的即时聊天系统IM系统
- C#完整的通信代码(点对点点对多同步
- 欧姆龙PLC网络通信程序
- C#在线聊天系统客户端+服务器
评论
共有 条评论