1

我在我的桌面应用程序中使用 WebServiceHost 托管服务,如果进程终止,则不会关闭此服务。我检查了进程终止后使用的端口并将其关闭,并且我能够正确重用相同的端口。

这个线程中,关闭只为 WebServiceHost 对象切换状态。

我发现没有线程警告不要使用关闭。桌面应用程序是否在完成后正确处理对象?或者需要在应用程序终止时关闭服务。

WebServiceHost WCFService = new WebServiceHost(wcs, httpBaseAddress);
WCFService.Open();
WCFService.Close(); // Is this line of code required when using WebServiceHost 
4

0 回答 0