[To be supplied.]
The main entry point for a service executable. Service.Run is called in much the same way as Application.Run for WinForms applications. For executables that hold more than one service, Service.Run can take an array of services that should be started.
[Visual Basic] Overloads Public Shared Sub Run(ServiceBase)
[C#] public static void Run(ServiceBase);
[C++] public: static void Run(ServiceBase*);
[JScript] public static function Run(ServiceBase);
The main entry point for a service executable. ServiceBase.Run is called in much the same way as Application.Run for WinForms applications. For executables that hold more than one service, ServiceBase.Run can take an array of services that should be started.
[Visual Basic] Overloads Public Shared Sub Run(ServiceBase())
[C#] public static void Run(ServiceBase[]);
[C++] public: static void Run(ServiceBase*[]);
[JScript] public static function Run(ServiceBase[]);
ServiceBase Class | ServiceBase Members | System.ServiceProcess Namespace