Пример #1
0
        /// <summary>
        /// Kill the scan
        /// </summary>
        public void Stop()
        {
            instance.StopScan();

            try
            {
                if (this.scanLog != null)
                {
                    this.scanLog.Close();
                    this.scanLog.Dispose();
                }
            }
            catch (Exception)
            {
                // Do Nothing.
            }
        }
Пример #2
0
 /// <summary>
 /// Kill the scan
 /// </summary>
 public void Stop()
 {
     instance.StopScan();
 }