Esempio n. 1
0
 public ModbusPkt(AsyncIO.TaskType Type, string Data)
 {
     this.Type = Type;
     this.Data = Data;
 }
Esempio n. 2
0
 public ModbusPkt(AsyncIO.TaskType Type, ccIJP Attribute, int value)
 {
     this.Type      = Type;
     this.Attribute = Attribute;
     this.Value     = value;
 }
Esempio n. 3
0
 public ModbusPkt(AsyncIO.TaskType Type)
 {
     this.Type = Type;
 }