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.OnStart

Called when the service is being started. You must override this function in order to start your service.

[Visual Basic]
Overridable Protected Sub OnStart( _
   ByVal args() As String _
)
[C#]
protected virtual void OnStart(
   string[] args
);
[C++]
protected: virtual void OnStart(
   String* args[]
);
[JScript]
protected function OnStart(
   args : String[]
);

Parameters

args
[To be supplied.]

See Also

ServiceBase Class | ServiceBase Members | System.ServiceProcess Namespace