资源简介
多线程采集网页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# TIP文件生成和拆解
- C#解析HL7消息的库135797
- C# OCR数字识别实例,采用TessnetOcr,对
- 考试管理系统 - C#源码
- asp.net C#购物车源代码
- C#实时网络流量监听源码
- C#百度地图源码
- Visual C#.2010从入门到精通配套源程序
- C# 软件版本更新
- C#屏幕软键盘源码,可以自己定制界面
- 智慧城市 智能家居 C# 源代码
- c#获取mobile手机的IMEI和IMSI
- C#实现简单QQ聊天程序
- 操作系统 模拟的 欢迎下载 C#版
- C#写的计算机性能监控程序
- 用C#实现邮件发送,有点类似于outlo
- MVC model层代码生成器 C#
- c#小型图书销售系统
- C# Socket Server Client 通讯应用 完整的服
- c# winform 自动登录 百度账户 源代码
- C#编写的16进制计算器
- C#TCP通信协议
- C# 数据表(Dataset)操作 合并 查询一
- C#语音识别系统speechsdk51,SpeechSDK51L
- 数据库备份还原工具1.0 C# 源码
-
[免费]xm
lDocument 节点遍历C# - EQ2008LEDc#开发实例
- DirectX.Capturec# winform 操作摄像头录像附
- c# 实现的最大最小距离方法对鸢尾花
- C#版保龄球记分代码
评论
共有 条评论