NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

ServiceBase.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( _
   ByVal services() As ServiceBase _
)
[C#]
public static void Run(
   ServiceBase[] services
);
[C++]
public: static void Run(
   ServiceBase* services[]
);
[JScript]
public static function Run(
   services : ServiceBase[]
);

Parameters

services
[To be supplied.]

See Also

ServiceBase Class | ServiceBase Members | System.ServiceProcess Namespace | ServiceBase.Run Overload List