Azavea.NijPredictivePolicing.AcsAlchemistGui.MainForm.TryRunExport C# (CSharp) Method

TryRunExport() protected method

protected TryRunExport ( bool isFishnet ) : void
isFishnet bool
return void
        protected void TryRunExport(bool isFishnet)
        {
            GatherInputs(isFishnet);
            if (!CheckValidity(isFishnet))
            {
                return;
            }

            _log.Debug("Ready to go!");
            HideLoadingSpinner();
            this.backgroundWorker1.RunWorkerAsync(FormController.Instance.JobInstance);

            SmartToggler();
        }