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

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

            e.Result = crc.Filter(this.m_clientConnector, e.Argument.ToString());
        }