Wisdom.Communicate 1.0.1

The owner has unlisted this package. This could mean that the package is deprecated, has security vulnerabilities or shouldn't be used anymore.
dotnet add package Wisdom.Communicate --version 1.0.1
                    
NuGet\Install-Package Wisdom.Communicate -Version 1.0.1
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Wisdom.Communicate" Version="1.0.1" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Wisdom.Communicate" Version="1.0.1" />
                    
Directory.Packages.props
<PackageReference Include="Wisdom.Communicate" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Wisdom.Communicate --version 1.0.1
                    
#r "nuget: Wisdom.Communicate, 1.0.1"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Wisdom.Communicate@1.0.1
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Wisdom.Communicate&version=1.0.1
                    
Install as a Cake Addin
#tool nuget:?package=Wisdom.Communicate&version=1.0.1
                    
Install as a Cake Tool

Wisdom.Communicate

电表检测软件通用通信基础库:串口/TCP 短连接发送接收、超时重试与粘包处理。通过 IPacketValidator 插件化接入各设备协议,RequestAsync 提供标准一发一收模型。支持 netstandard2.0、net48、net8.0-windows。

功能概览

类型 说明
ITransport 传输接口:SendAsync / ReceiveOnceAsync / RequestAsync / Close
TransportBase 抽象基类:接收缓存、报文提取、超时重试
SerialTransport 基于 TouchSocket 的串口实现
TcpClientTransport 基于 TouchSocket 的 TCP 客户端实现
IPacketValidator 报文完整性校验与粘包提取
ICommContext / CommContext 通信上下文(本次/上次报文、时间戳)

目标框架

  • netstandard2.0
  • net48
  • net8.0-windows

依赖

用途
TouchSocket / TouchSocket.Core / TouchSocket.SerialPorts 串口与 TCP
log4net 日志

快速开始

using Wisdom.Communicate;

ITransport transport = new SerialTransport("COM3", 9600, validator: myValidator);
var response = await transport.RequestAsync(requestFrame, timeoutMs: 3000);
transport.Close();

典型场景

  • 误差仪、标准表、表架设备的底层收发
  • Wisdom.Communicate.Protocol.* 协议库组合使用
  • 需要粘包提取与超时重试的短连接通信

安装

NuGet(推荐)

Visual Studio「管理 NuGet 程序包」中添加源后搜索安装,或使用 CLI:

dotnet add package Wisdom.Communicate --source wisdom-commonlibrary

NuGet 源:

https://nuget.cnb.cool/Wisdom-ProductTestingDepartment/CommonLibrary/-/packages/v3/index.json

源码(git submodule)

本仓库作为主工程 CommonLibrary/Wisdom.Communicate 子模块维护。修改后推送 Tag(如 v1.2.3)触发 CNB CI 自动打包发布。

发布

git tag v1.2.3
git push origin v1.2.3

CI 仅在 v* Tag 推送时执行 dotnet pack / dotnet nuget push,包版本取自 Tag(去掉前缀 v)。

仓库与制品

地址
源码 https://cnb.cool/Wisdom-ProductTestingDepartment/Wisdom.Communicate
NuGet 制品库 https://nuget.cnb.cool/Wisdom-ProductTestingDepartment/CommonLibrary/-/packages
组织 https://cnb.cool/Wisdom-ProductTestingDepartment

许可证

内部使用组件,版权归属 烟台东方威思顿电气有限公司(威思顿检测产品部)。未经授权请勿对外分发。

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net8.0-windows7.0 is compatible.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 is compatible.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated

1.0.1:补充完整 README、NuGet 元数据与 WSD 包图标;Tag 触发自动发布。