/// <summary> /// Get the status of the client registry /// </summary> void m_crStatus_DoWork(object sender, DoWorkEventArgs e) { PdqCommunications crc = new PdqCommunications(); e.Result = crc.IsCrAvailable(this.m_clientConnector); }
/// <summary> /// Populate the auto-complete data worker thread /// </summary> void m_populateAutoComplete_DoWork(object sender, DoWorkEventArgs e) { PdqCommunications crc = new PdqCommunications(); e.Result = crc.Filter(this.m_clientConnector, e.Argument.ToString()); }