Пример #1
0
 ///-------------------------------------------------------------------------------------------------
 /// <summary>
 ///     When implemented in a derived class, executes when a Start command is sent to the service
 ///     by the Service Control Manager (SCM) or when the operating system starts (for a service
 ///     that starts automatically). Specifies actions to take when the service starts.
 /// </summary>
 ///
 /// <param name="args"> Data passed by the start command. </param>
 ///-------------------------------------------------------------------------------------------------
 protected override void OnStart(string[] args)
 {
     _documentProcessingService.Run();
 }