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.
我有一个执行冗长操作的 WCF 服务。我有以下问题:
1) 客户调用我的函数
2).net框架启动一个异步执行请求的工作线程
3)服务被关闭,在上述请求完成之前
4)客户端收到404响应(未注册)
5)线程继续运行(!)直到应用程序完成,然后它被删除而没有警告(中止信号或其他东西)
我需要一种优雅地终止工作线程并向客户端发送 503 响应的方法。