private void ConstructorHelper(string PipeName, QvxWindow QVWindow) { thread = new Thread(new ThreadStart(QvxCommandWorker)); thread.IsBackground = true; thread.Name = "QvxCommandWorker"; this.pipeName = PipeName.Replace(@"\\.\pipe\", ""); this.QVWindow = QVWindow; }
public QvxCommandClient(string[] args) { if (args == null) throw new ArgumentNullException("args"); if (args.Length < 2) throw new ArgumentException("args need at least two Items"); var QVHwnd = new QvxWindow(Int32.Parse(args[0], NumberStyles.HexNumber)); ConstructorHelper(args[1], QVWindow); }
public QvxCommandClient(string[] args) { if (args == null) { throw new ArgumentNullException("args"); } if (args.Length < 2) { throw new ArgumentException("args need at least two Items"); } var QVHwnd = new QvxWindow(Int32.Parse(args[0], NumberStyles.HexNumber)); ConstructorHelper(args[1], QVWindow); }
public QvxCommandClient(string PipeName, QvxWindow QVWindow) { ConstructorHelper(PipeName, QVWindow); }