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

Parameters

service
[To be supplied.]

See Also

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