资源简介
新开发的项目要用TFTP的功能,网上大多都是客户端,有服务器端也大多是C语言或C++的。找了很久才找到了一个C#的,整理了一下,传上来,分享一下。
代码片段和文件信息
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.ComponentModel;
namespace GMS_Com
{
public class AppSettings
{
private int id = 0;
private bool isHight = true;
private string codeName = “1“;
private string codeValue = “0“;
private CodeType codeTp = CodeType.字节;
private frameType frameTp = frameType.数据位;
private int coeffice = 1;
///
/// 编号
///
[DescriptionAttribute(“该位在协议中处于第几位(从左到右)“)
CategoryAttribute(“编号“)
ReadOnlyAttribute(true)
DefaultValueAttribute(0)]
public int ID
{
get
{
return id;
}
set
{
id = value;
}
}
///
/// 高低位顺序
///
[DescriptionAttribute(“是否更改该位数据的高地位“)
CategoryAttribute(“高低位顺序“)
DefaultValueAttribute(false)]
public bool IsHight
{
get
{
return isHight;
}
set
{
isHight = value;
}
}
///
/// 代表名称
///
[DescriptionAttribute(“该位代表的意义或名称“)
CategoryAttribute(“代表名称“)
ReadOnlyAttribute(false)
DefaultValueAttribute(““)]
public string CodeName
{
get
{
return codeName;
}
set
{
codeName = value;
}
}
///
/// 默认有效值
///
[DescriptionAttribute(“默认有效值“)
CategoryAttribute(“有效值“)
DefaultValueAttribute(““)]
public string CodeValue
{
get
{
return codeValue;
}
set
{
codeValue = value;
}
}
///
/// 数据类型
///
[DescriptionAttribute(“表示该数据位的数据类型“)
CategoryAttribute(“全局设置“)
DefaultValueAttribute(CodeType.无符号短整型)]
public CodeType CodeTp
{
get
{
return codeTp;
}
set
{
codeTp = value;
}
}
///
/// 帧类型枚举
///
[DescriptionAttribute(“表示该数据位所代表的意义的类型枚举,“)
CategoryAttribute(“全局设置“)
DefaultValueAttribute(frameType.帧头)]
public frameType frameTp
{
get
{
return frameTp;
}
set
{
frameTp = value;
}
}
///
/// 系数
///
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 3719 2014-02-19 18:34 TFTPServerDemo\GMS-Com\AppSettings.cs
文件 46592 2014-02-25 10:43 TFTPServerDemo\GMS-Com\bin\Debug\GMS-Com.dll
文件 103936 2014-02-25 10:43 TFTPServerDemo\GMS-Com\bin\Debug\GMS-Com.pdb
文件 135 2014-02-19 18:34 TFTPServerDemo\GMS-Com\bin\Debug\sqlite.bat
文件 470528 2014-02-19 18:34 TFTPServerDemo\GMS-Com\bin\Debug\sqlite3.exe
文件 822784 2014-02-19 18:34 TFTPServerDemo\GMS-Com\bin\Debug\System.Data.SQLite.dll
文件 42496 2014-02-19 18:34 TFTPServerDemo\GMS-Com\bin\Release\GMS-Com.dll
文件 135 2014-02-19 18:34 TFTPServerDemo\GMS-Com\bin\Release\sqlite.bat
文件 470528 2014-02-19 18:34 TFTPServerDemo\GMS-Com\bin\Release\sqlite3.exe
文件 822784 2014-02-19 18:34 TFTPServerDemo\GMS-Com\bin\Release\System.Data.SQLite.dll
文件 4073 2014-02-19 18:34 TFTPServerDemo\GMS-Com\CDeviceEntity.cs
文件 730 2014-02-19 18:34 TFTPServerDemo\GMS-Com\CustomTimer.cs
文件 1040 2014-02-19 18:34 TFTPServerDemo\GMS-Com\CustomTimer.Designer.cs
文件 6850 2014-02-19 18:34 TFTPServerDemo\GMS-Com\EnumClass.cs
文件 3752 2014-02-19 18:34 TFTPServerDemo\GMS-Com\GMS-Com.csproj
文件 16919 2014-02-19 18:34 TFTPServerDemo\GMS-Com\LinuxTelnetHelper.cs
文件 5776 2014-02-25 10:43 TFTPServerDemo\GMS-Com\obj\Debug\DesignTimeResolveAssemblyReferencesInput.cache
文件 898 2014-02-25 10:43 TFTPServerDemo\GMS-Com\obj\Debug\GMS-Com.csproj.FileListAbsolute.txt
文件 46592 2014-02-25 10:43 TFTPServerDemo\GMS-Com\obj\Debug\GMS-Com.dll
文件 103936 2014-02-25 10:43 TFTPServerDemo\GMS-Com\obj\Debug\GMS-Com.pdb
文件 5810 2014-02-19 18:34 TFTPServerDemo\GMS-Com\obj\Release\DesignTimeResolveAssemblyReferencesInput.cache
文件 1106 2014-02-19 18:34 TFTPServerDemo\GMS-Com\obj\Release\GMS-Com.csproj.FileListAbsolute.txt
文件 42496 2014-02-19 18:34 TFTPServerDemo\GMS-Com\obj\Release\GMS-Com.dll
文件 4753 2014-02-19 18:34 TFTPServerDemo\GMS-Com\obj\Release\ResolveAssemblyReference.cache
文件 1364 2014-02-19 18:34 TFTPServerDemo\GMS-Com\Properties\AssemblyInfo.cs
文件 3752 2014-02-19 18:34 TFTPServerDemo\GMS-Com\sc
文件 135 2014-02-19 18:34 TFTPServerDemo\GMS-Com\sqlite.bat
文件 470528 2014-02-19 18:34 TFTPServerDemo\GMS-Com\sqlite3.exe
文件 7265 2014-02-19 18:34 TFTPServerDemo\GMS-Com\SqliteHelper.cs
文件 822784 2014-02-19 18:34 TFTPServerDemo\GMS-Com\System.Data.SQLite.dll
............此处省略116个文件信息
- 上一篇:函数图像生成器&利用CPU画曲线
- 下一篇:工业相机开发手册
相关资源
- Leetcode Top100题目和答案(C#完整版 面
- 仪表控件-pc上运行(C# && C++)
- TDMS官方Dll开发包,
- C#封装C++DLL并调用
- VS2015 C++和C++的通过SOAP的WebService,C
- C#调用C++的DLL
- C#+opencv拍照和图片对比
- FastReport_.NET_NetFx2-NetFx4_2019.3.5全功能破
- 数据结构(C语言版)
- Visual Studio C#+SQL Server数据库开发与
- modbus tcp/rtu客户端服务端通讯程序合集
- 精通net互操作pdf带目录
- C#_IFC_Viewer_Editor 最新Csharp源码 2017_
- 讯飞windows端语音识别一套是基于QT设
- C# Csharp 调用 C++的DLL中的回调函数
- c#调用c++的可变参数
- Visual C++开发GIS系统第2版
- 编译好的GDAL库,含GEOS和PROJ,以及C
- Visual C#.NET串口通信及测控应用典型
- C++C#互通DES加密算法
- C#图解教程.pdf
- C#开发FFMPEG(API方式) FFmpeg拉取RTMP流
- C#程序设计经典300例源代码
- 在VS2015中用C++创建DLL并用C#调用且同时
- Visual Studio C#数据库开发经典案例
- C++基于HTTP的POST上传,C#的网站接收并
- Emgucvopencv+C#例程集锦
- AutoCAD二次开发文档C++ C# 史上最全版
- 拼图游戏大型课程设计C# C++
- IFC文件解析,有C# C++ VB.Net
评论
共有 条评论