C# Класс NUnit.Framework.Internal.ThreadUtility

The ThreadUtility class encapsulates several static methods useful when working with threads.
Показать файл Открыть проект

Открытые методы

Метод Описание
Kill ( Thread thread ) : void

Do our best to Kill a thread

Kill ( Thread thread, object stateInfo ) : void

Do our best to kill a thread, passing state info

Описание методов

Kill() публичный статический Метод

Do our best to Kill a thread
public static Kill ( Thread thread ) : void
thread Thread The thread to kill
Результат void

Kill() публичный статический Метод

Do our best to kill a thread, passing state info
public static Kill ( Thread thread, object stateInfo ) : void
thread Thread The thread to kill
stateInfo object Info for the ThreadAbortException handler
Результат void