SEToolbox.Models.StructureVoxelModel.CancelAsync C# (CSharp) Méthode

CancelAsync() public méthode

public CancelAsync ( ) : void
Résultat void
        public override void CancelAsync()
        {
            if (_asyncWorker != null && _asyncWorker.IsBusy && _asyncWorker.WorkerSupportsCancellation)
            {
                _asyncWorker.CancelAsync();

                // TODO: kill file access to the Zip reader?
            }
        }