コード例 #1
0
        public static void LoginSurfaceGather(string reportName, GatherEvent e) // 注册外部采集
        {
            GatherReport report = new GatherReport();
            GatherTable  tab    = report.GetReportTable(reportName);
            GatherTimer  time   = tab.GetGatherTimer();

            time.注册外部采集器(e);
        }
コード例 #2
0
ファイル: GatherLogic.cs プロジェクト: jyorin/yinghe
 // 注册外部采集
 public void LoginSurfaceGather(string reportName,string WP4000IP)
 {
     功率分析仪 _功率分析仪 = AnyWay类构造.获取功率分析仪(WP4000IP);
     GatherEvent e = new GatherEvent();
     _功率分析仪.解析完毕 += new 功率分析仪.解析完毕通知(e.外部采集处理函数);
     GatherFace.LoginSurfaceGather(reportName,e);
 }
コード例 #3
0
ファイル: GatherTimer.cs プロジェクト: jyorin/yinghe
 public void 注册外部采集器(GatherEvent e)
 {
     _e = e;
     this.外部采集标志 = true;
     _e.外部采集事件 += 注册外部采集事件;
 }
コード例 #4
0
ファイル: GatherFace.cs プロジェクト: jyorin/yinghe
 // 注册外部采集
 public static void LoginSurfaceGather(string reportName,GatherEvent e)
 {
     GatherReport report = new GatherReport();
     GatherTable tab = report.GetReportTable(reportName);
     GatherTimer time = tab.GetGatherTimer();
     time.注册外部采集器(e);
 }
コード例 #5
0
 public void 注册外部采集器(GatherEvent e)
 {
     _e          = e;
     this.外部采集标志 = true;
     _e.外部采集事件  += 注册外部采集事件;
 }