ServiceBase::Run Method (ServiceBase^)
.NET Framework (current version)
Registers the executable for a service with the Service Control Manager (SCM).
Assembly: System.ServiceProcess (in System.ServiceProcess.dll)
Parameters
- service
-
Type:
System.ServiceProcess::ServiceBase^
A ServiceBase which indicates a service to start.
| Exception | Condition |
|---|---|
| ArgumentException | service is null. |
Call this overload in the main() function of the service executable to register the service with the Service Control Manager. After you call Run(ServiceBase^), the Service Control Manager issues a Start command, which results in a call to the OnStart method in the service. The service is not started until the Start command is executed.
The ServiceBase::Run method is called in much the same way as Application::Run for Windows Forms applications.
If AutoLog is true, an entry is written to the event log if the service specified by the service parameter fails to start.
.NET Framework
Available since 1.1
Available since 1.1
Show: