Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个执行函数的线程和几个使用 AutoResetEvent 阻塞的线程。所有这些都发生在 WCF 服务中
是否有可能从客户端应用程序中挂起/终止等待线程。我跟踪 ManagedThreadIds
当然建议您找到另一种方法来向线程发出信号以优雅地结束它们的循环,但在回答您的问题时,是的,这是可能的。看一下 System.Diagnostics.Process 类。从那里您可以检查给定进程的线程。您可以在要终止的线程上调用 Abort()。