资源简介
多线程采集网页C#源代码
代码片段和文件信息
using System;
using System.Collections.Generic;
using System.Text;
namespace DataEntity
{
public class Entity_GatherThread
{
public Entity_GatherThread()
{ }
#region Model
private int _strMgId = 0;
private string _strMgName = string.Empty;
private string _strPeriodId = string.Empty;
private string _strStateId = string.Empty;
private string _strStateName = string.Empty;
private string _strCourseManageId = string.Empty;
private DateTime _dtNextTime = new DateTime();
private bool _blYesOrNo = true;
private bool _blOneFlag = true;
private int _PeriodGather = 0;
private DateTime _StartTime = new DateTime();
private DateTime _EndTime = new DateTime();
private int _DataSourceId = 0;
private string _DataSourceName = string.Empty;
///
/// 信息编码
///
public int MgId
{
get { return this._strMgId; }
set { this._strMgId = value; }
}
///
/// 信息名称
///
public string MgName
{
get { return this._strMgName; }
set { this._strMgName = value; }
}
///
/// 信息采集周期
///
public string PeriodId
{
get { return this._strPeriodId; }
set { this._strPeriodId = value; }
}
///
/// 采集状态ID
///
public string StateId
{
get { return this._strStateId; }
set { this._strStateId = value; }
}
///
/// 采集状态名称
///
public string StateName
{
get { return this._strStateName; }
set { this._strStateName = value; }
}
///
/// 采集线程Id
///
public string CourseManageId
{
get { return this._strCourseManageId; }
set { this._strCourseManageId = value; }
}
///
/// 循环采集间隔时间,单位分钟
///
public int PeriodGather
{
get { return _PeriodGather; }
set { _PeriodGather = value; }
}
///
/// 循环采集开始时间
///
public DateTime StartTime
{
get { return _StartTime; }
set { _StartTime = value; }
}
///
/// 循环采集结束时间
///
public DateTime EndTime
{
get { return _EndTime; }
set { _EndTime = value; }
}
///
/// 通过周期的计算,下次该信息启动进程的时间
///
public DateTime NextTime
{
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 2867 2008-01-27 08:55 多线程采集C#源代码\DataEntity\说明.htm
文件 2066 2007-03-07 08:34 多线程采集C#源代码\DataEntity\bin\Debug\china-code.net.txt
文件 13457 2007-03-07 08:49 多线程采集C#源代码\DataEntity\bin\Debug\说明.html
文件 2066 2007-03-07 08:34 多线程采集C#源代码\DataEntity\bin\china-code.net.txt
文件 13457 2007-03-07 08:49 多线程采集C#源代码\DataEntity\bin\说明.html
文件 1351 2007-10-15 15:54 多线程采集C#源代码\DataEntity\Properties\AssemblyInfo.cs
文件 2066 2007-03-07 08:34 多线程采集C#源代码\DataEntity\Properties\china-code.net.txt
文件 13457 2007-03-07 08:49 多线程采集C#源代码\DataEntity\Properties\说明.html
文件 2066 2007-03-07 08:34 多线程采集C#源代码\DataEntity\obj\Debug\TempPE\china-code.net.txt
文件 13457 2007-03-07 08:49 多线程采集C#源代码\DataEntity\obj\Debug\TempPE\说明.html
文件 2066 2007-03-07 08:34 多线程采集C#源代码\DataEntity\obj\Debug\china-code.net.txt
文件 13457 2007-03-07 08:49 多线程采集C#源代码\DataEntity\obj\Debug\说明.html
文件 2066 2007-03-07 08:34 多线程采集C#源代码\DataEntity\obj\china-code.net.txt
文件 13457 2007-03-07 08:49 多线程采集C#源代码\DataEntity\obj\说明.html
文件 2007 2007-10-15 16:13 多线程采集C#源代码\DataEntity\Entity_Gather_Article.cs
文件 945 2008-01-27 08:54 多线程采集C#源代码\DataEntity\Entity_Gather_BasicConfig.cs
文件 2193 2007-10-15 16:15 多线程采集C#源代码\DataEntity\Entity_Gather_DataSourceConfig.cs
文件 1707 2007-10-15 16:15 多线程采集C#源代码\DataEntity\Entity_Gather_Message.cs
文件 945 2008-01-27 08:54 多线程采集C#源代码\DataEntity\Entity_Gather_OperationKind.cs
文件 2808 2007-10-19 11:02 多线程采集C#源代码\DataEntity\Entity_Gather_ParticularConfig.cs
文件 1774 2007-10-15 16:17 多线程采集C#源代码\DataEntity\Entity_Gather_Period.cs
文件 4394 2007-10-21 20:20 多线程采集C#源代码\DataEntity\Entity_GatherThread.cs
文件 2553 2008-01-27 08:55 多线程采集C#源代码\DataEntity\DataEntity.csproj
文件 2066 2007-03-07 08:34 多线程采集C#源代码\DataEntity\china-code.net.txt
文件 13457 2007-03-07 08:49 多线程采集C#源代码\DataEntity\说明.html
文件 2867 2008-01-27 08:55 多线程采集C#源代码\WebDataGather\说明.htm
文件 5632 2005-12-08 14:51 多线程采集C#源代码\WebDataGather\bin\Debug\WebDataGather.vshost.exe
文件 532 2008-01-27 09:09 多线程采集C#源代码\WebDataGather\bin\Debug\WebDataGather.vshost.exe.config
文件 2066 2007-03-07 08:34 多线程采集C#源代码\WebDataGather\bin\Debug\china-code.net.txt
文件 13457 2007-03-07 08:49 多线程采集C#源代码\WebDataGather\bin\Debug\说明.html
............此处省略99个文件信息
- 上一篇:QuadTree四叉树实现代码 C#
- 下一篇:串口通信 实时解析或发送串口的数据包
相关资源
- C# 调用win32 api函数-user32.dll详细说明
- C# 调用BarTender打印条码DEMO
- 大型比赛竞赛抽签系统 可打印 c# vs
- C#编写的Gerber查看器
- lua C# .Net4.0 vs2010 LuaInterface
- C#十六进制编辑器
- 明华URF-35H读卡器 C#读写源码 为大家
- C#文件流读取CSV文件
- c#读写PDF文件sql
- C# winform Socket大文件传输
- c#车牌识别系统附30张测试图片
- 《C#面向对象程序设计》源代码(CS)
- 金旭亮《C#面向对象程序设计》教案
- 试题库管理系统毕业论文(C#)源程序
- 学校网站原代码(C#.NET)
- C#-数据库操作技术-员工管理系统
- c#web开发入门经典
- C#与Matlab混合编程的几种方式
- c# 开发与 mysql数据库实现的增删改查
- C#异步操作 异步查询数据库 异步处理
- Basler相机通过IO触发源码
- [源代码] 《领域驱动设计 (C# 2008 实
- 松下PLC与C#通讯串口调试入门教程.z
- USB 继电器控制器 LCUS-1 保证能用 c#
- C# AES加密解密小工具
- C#圆形按钮,非常漂亮动态~~
- [精]C#仿QQ右下角弹出提示框()
- C#进程间通信-共享内存代码
- 有史以来最简单的三层(C#)
- vb调用c#编写的串口DLL文件(vb源码
评论
共有 条评论