PerseusApi.Generic.ProcessInfo.Abort C# (CSharp) Method

Abort() public method

public Abort ( ) : void
return void
        public void Abort()
        {
            foreach (
                ThreadDistributor threadDistributor in threadDistributors.Where(threadDistributor => threadDistributor != null)){
                threadDistributor.Abort();
            }
            if (registeredThreads != null){
                foreach (Thread t in registeredThreads.Where(t => t != null)){
                    t.Abort();
                }
            }
        }