29 lines
826 B
C#
29 lines
826 B
C#
///
|
|
/// Copyright (c) 2015-2017 Sensus Metering Systems
|
|
/// Author: Milan Hanajík
|
|
///
|
|
using System;
|
|
|
|
namespace TBF.BenchControl.TestMethods.iPerlCommunication
|
|
{
|
|
public class CommCompletedEventArgs : EventArgs
|
|
{
|
|
public int ThreadId;
|
|
public int WMNr;
|
|
public iPerlHead.IperlHead Ihead;
|
|
public Results.Entities.WaterMeter Wm;
|
|
public string CommMessage;
|
|
public CommErr CommErr;
|
|
|
|
public CommCompletedEventArgs(int threadId, int wmNr, iPerlHead.IperlHead ihead, Results.Entities.WaterMeter wm, string commMessage, CommErr commErr)
|
|
{
|
|
this.ThreadId = threadId;
|
|
this.WMNr = wmNr;
|
|
this.Ihead = ihead;
|
|
this.Wm = wm;
|
|
this.CommMessage = commMessage;
|
|
this.CommErr = commErr;
|
|
}
|
|
}
|
|
}
|