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; }
public TioDbSet(string container) { Tio = new TioConnection("localhost:2605"); this.Container = container; this.Handle = GetHandle(); }