实例介绍
本程序使用开源的来自英国的networkcomms2.3.1网络通讯框架(c#语言编写) 使用networkcomms框架作为工作中的主要编程框架1年多的时间了,networkcomms的有优美、稳定深深打动了我,基于此框架开发了不少程序,特别的稳定。 networkcomms框架由英国剑桥的2位工程师开发,支持.net2.0以上平台,原生态的支持xamarion.android(安卓),xamarin.ios,以及蓝牙等多平台开发。 networkcomms2.3.1版本通讯框架大家可以从此文中下载 networkcomms网络通讯框架学习 networkcomms目前的最新版
【实例截图】
【核心代码】
50796349-a598-45b0-bffd-ef2a843b1fb4
├── AppClient
│ ├── AppClient.csproj
│ ├── AppClient说明.txt
│ ├── app.config
│ ├── bin
│ │ ├── Release
│ │ │ ├── AppClient.exe
│ │ │ ├── AppClient.exe.config
│ │ │ ├── AppClient.pdb
│ │ │ ├── AppUpgrade.exe
│ │ │ ├── AppUpgrade.exe.config
│ │ │ ├── DPSBase.dll
│ │ │ ├── DPSBase.pdb
│ │ │ ├── DPSBase.xml
│ │ │ ├── NetworkCommsDotNet.dll
│ │ │ ├── NetworkCommsDotNet.pdb
│ │ │ ├── NetworkCommsDotNet.xml
│ │ │ ├── NLog.dll
│ │ │ ├── protobuf-net.dll
│ │ │ ├── protobuf-net.xml
│ │ │ ├── ProtobufSerializer.dll
│ │ │ ├── ProtobufSerializer.xml
│ │ │ ├── SevenZipLZMACompressor.dll
│ │ │ ├── SevenZipLZMACompressor.pdb
│ │ │ ├── SevenZipLZMACompressor.xml
│ │ │ ├── Upgrade.Business.dll
│ │ │ ├── Upgrade.Business.pdb
│ │ │ ├── UpgradeConfig.xml
│ │ │ └── 官方授权 淘宝优惠销售.txt
│ │ └── 官方授权 淘宝优惠销售.txt
│ ├── MainForm.cs
│ ├── MainForm.Designer.cs
│ ├── MainForm.resx
│ ├── networkocmms V3 版 官方授权淘宝八折购买.mht
│ ├── networkocmms V3 英文网站九折购买.mht
│ ├── obj
│ │ └── x86
│ │ ├── Debug
│ │ │ └── DesignTimeResolveAssemblyReferencesInput.cache
│ │ └── Release
│ │ ├── AppClient.csproj.FileListAbsolute.txt
│ │ ├── AppClient.csproj.GenerateResource.Cache
│ │ ├── AppClient.csprojResolveAssemblyReference.cache
│ │ ├── AppClient.exe
│ │ ├── AppClient.MainForm.resources
│ │ ├── AppClient.pdb
│ │ ├── AppClient.Properties.Resources.resources
│ │ └── DesignTimeResolveAssemblyReferencesInput.cache
│ ├── Program.cs
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ └── 官方授权 淘宝优惠销售.txt
├── AppServer
│ ├── App.config
│ ├── AppServer.csproj
│ ├── AppServer.csproj.user
│ ├── bin
│ │ └── Release
│ │ ├── AppServer.exe
│ │ ├── AppServer.exe.config
│ │ ├── AppServer.pdb
│ │ ├── DPSBase.dll
│ │ ├── DPSBase.pdb
│ │ ├── DPSBase.xml
│ │ ├── NetworkCommsDotNet.dll
│ │ ├── NetworkCommsDotNet.pdb
│ │ ├── NetworkCommsDotNet.xml
│ │ ├── NLog.dll
│ │ ├── protobuf-net.dll
│ │ ├── protobuf-net.pdb
│ │ ├── protobuf-net.xml
│ │ ├── ProtobufSerializer.dll
│ │ ├── ProtobufSerializer.pdb
│ │ ├── ProtobufSerializer.xml
│ │ ├── SevenZipLZMACompressor.dll
│ │ ├── SevenZipLZMACompressor.pdb
│ │ ├── SevenZipLZMACompressor.xml
│ │ ├── Upgrade.Business.dll
│ │ ├── Upgrade.Business.pdb
│ │ ├── UpgradeFile
│ │ │ ├── Lighthouse.jpg
│ │ │ ├── Penguins.jpg
│ │ │ ├── Tulips.jpg
│ │ │ └── UpgradeConfig.xml
│ │ ├── 查看发文字典.txt
│ │ └── 查看连接数.txt
│ ├── Core
│ │ ├── CustomEventArgs.cs
│ │ ├── EventHelper.cs
│ │ ├── LogInfo.cs
│ │ ├── LogTools.cs
│ │ └── 官方授权 淘宝优惠销售.txt
│ ├── File
│ │ ├── FileIDCreator.cs
│ │ ├── FileTransOptions.cs
│ │ ├── SendFile.cs
│ │ ├── SendFileDict.cs
│ │ └── ServerManager.cs
│ ├── Icon
│ │ ├── add_server.ico
│ │ ├── black_server.ico
│ │ ├── data_server.ico
│ │ ├── desable_server.ico
│ │ ├── download_server.ico
│ │ ├── email_server.ico
│ │ ├── enable_server.ico
│ │ ├── firewall_server.ico
│ │ ├── lock_server.ico
│ │ ├── off_server.ico
│ │ ├── print_server.ico
│ │ ├── proxy_server.ico
│ │ ├── remove_server.ico
│ │ ├── search_server.ico
│ │ ├── server.ico
│ │ ├── unlock_server.ico
│ │ ├── upload_server.ico
│ │ └── web_server.ico
│ ├── MainForm.cs
│ ├── MainForm.Designer.cs
│ ├── MainForm.resx
│ ├── obj
│ │ ├── x86
│ │ │ ├── Debug
│ │ │ │ └── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ └── Release
│ │ │ ├── AppServer.csproj.FileListAbsolute.txt
│ │ │ ├── AppServer.csproj.GenerateResource.Cache
│ │ │ ├── AppServer.csprojResolveAssemblyReference.cache
│ │ │ ├── AppServer.exe
│ │ │ ├── AppServer.MainForm.resources
│ │ │ ├── AppServer.pdb
│ │ │ ├── AppServer.Properties.Resources.resources
│ │ │ ├── AppServer.UpgradeForm.resources
│ │ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ │ └── DesignTimeResolveAssemblyReferencesInput.cache
│ │ └── 官方授权 淘宝优惠销售.txt
│ ├── Program.cs
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── Update
│ │ ├── UpgradeForm.cs
│ │ ├── UpgradeForm.Designer.cs
│ │ ├── UpgradeForm.resx
│ │ └── 官方授权 淘宝优惠销售.txt
│ └── 官方授权 淘宝优惠销售.txt
├── AppUpgrade
│ ├── AppClient说明.txt
│ ├── App.config
│ ├── AppUpgrade.csproj
│ ├── AppUpgrade.csproj.user
│ ├── bin
│ │ └── Release
│ │ ├── AppUpgrade.exe
│ │ ├── AppUpgrade.exe.config
│ │ ├── AppUpgrade.pdb
│ │ ├── DPSBase.dll
│ │ ├── DPSBase.pdb
│ │ ├── DPSBase.xml
│ │ ├── NetworkCommsDotNet.dll
│ │ ├── NetworkCommsDotNet.pdb
│ │ ├── NetworkCommsDotNet.xml
│ │ ├── NLog.dll
│ │ ├── protobuf-net.dll
│ │ ├── protobuf-net.xml
│ │ ├── ProtobufSerializer.dll
│ │ ├── ProtobufSerializer.xml
│ │ ├── SevenZipLZMACompressor.dll
│ │ ├── SevenZipLZMACompressor.pdb
│ │ ├── SevenZipLZMACompressor.xml
│ │ ├── Upgrade.Business.dll
│ │ ├── Upgrade.Business.pdb
│ │ └── UpgradeConfig.xml
│ ├── Control
│ │ ├── ReceiveFileControl.cs
│ │ ├── ReceiveFileControl.Designer.cs
│ │ ├── ReceiveFileControl.resx
│ │ ├── ShowReceiveFiles.cs
│ │ ├── ShowReceiveFiles.Designer.cs
│ │ ├── ShowReceiveFiles.resx
│ │ └── 官方授权 淘宝优惠销售.txt
│ ├── Core
│ │ ├── CustomEventArgs.cs
│ │ ├── EventHelper.cs
│ │ └── LogTools.cs
│ ├── File
│ │ ├── FileIDCreator.cs
│ │ ├── ReceiveFile.cs
│ │ └── ReceiveFileDict.cs
│ ├── IPHelper.cs
│ ├── MainForm.cs
│ ├── MainForm.Designer.cs
│ ├── MainForm.resx
│ ├── obj
│ │ └── x86
│ │ ├── Debug
│ │ │ └── DesignTimeResolveAssemblyReferencesInput.cache
│ │ └── Release
│ │ ├── AppUpgrade.csproj.FileListAbsolute.txt
│ │ ├── AppUpgrade.csproj.GenerateResource.Cache
│ │ ├── AppUpgrade.csprojResolveAssemblyReference.cache
│ │ ├── AppUpgrade.exe
│ │ ├── AppUpgrade.FileRecTransferItem.resources
│ │ ├── AppUpgrade.FileRecTransViewer.resources
│ │ ├── AppUpgrade.MainForm.resources
│ │ ├── AppUpgrade.pdb
│ │ ├── AppUpgrade.Properties.Resources.resources
│ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ └── DesignTimeResolveAssemblyReferencesInput.cache
│ ├── Program.cs
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ └── 官方授权 淘宝优惠销售.txt
├── networkocmms V3 版 官方授权淘宝八折购买.mht
├── networkocmms V3 英文网站九折购买.mht
└── Upgrade.Business
├── ActionHelper.cs
├── bin
│ ├── Release
│ │ ├── protobuf-net.dll
│ │ ├── protobuf-net.pdb
│ │ ├── protobuf-net.xml
│ │ ├── Upgrade.Business.dll
│ │ └── Upgrade.Business.pdb
│ └── 官方授权 淘宝优惠销售.txt
├── Core.cs
├── CustomEventArgs.cs
├── FileContract.cs
├── obj
│ ├── Debug
│ │ └── DesignTimeResolveAssemblyReferencesInput.cache
│ └── Release
│ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ ├── Upgrade.Business.csproj.FileListAbsolute.txt
│ ├── Upgrade.Business.csprojResolveAssemblyReference.cache
│ ├── Upgrade.Business.dll
│ └── Upgrade.Business.pdb
├── Properties
│ └── AssemblyInfo.cs
├── ResMessage.cs
├── SendInfo.cs
├── Upgrade.Business.csproj
├── UpgradeConfig.cs
└── 官方授权 淘宝优惠销售.txt
39 directories, 216 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论