Exemplo n.º 1
0
 public TioLogParser(string address, string path, int speed, int delay, bool follow, bool pause)
 {
     Tio    = TioConnection.Connect(address);
     Path   = path;
     Speed  = speed;
     Delay  = delay;
     Follow = follow;
     Pause  = pause;
 }
Exemplo n.º 2
0
 public TioDbSet(string container)
 {
     Tio            = new TioConnection("localhost:2605");
     this.Container = container;
     this.Handle    = GetHandle();
 }