什么是wcf

本文讲解"什么是wcf",用于解决相关问题。

                                                           1. Create a windows service project

什么是wcf

2. Add Reference to the assembly which contains the contract and its implementation.

3. Remove the Service1.cs, add a new Windows Service class and name it to CalculatorWindowsService

什么是wcf

4. Override OnStart and OnStop method in WindowsServiceHost class

  a. instantiate ServiceHost and open it in Onstart

  b. Close the ServiceHost in Onstop

什么是wcf

5. Create a Installer class to allow the exe to be installed as windows service

什么是wcf

什么是wcf

6. Instantiate a CalculatorWindowsService in the Program Main method.

什么是wcf

7. Edit App.config and add configuration info for the service

什么是wcf

8. Build Project and execute installutil.exe /i WindowsServiceHost.exe to install the service.

9. Open services.msc and start the service.

什么是wcf

关于 "什么是wcf" 就介绍到此。希望多多支持编程宝库

怎么实现C# 并行任务的Parallel类:本文讲解"如何实现C# 并行任务的Parallel类",用于解决相关问题。                                                           一、 ...