* Identity.cs: Added support for dynamic properties.
[mono.git] / mcs / class / System.ServiceProcess / System.ServiceProcess / ServiceBase.cs
1 using System;
2
3 namespace System.ServiceProcess
4 {
5         public class ServiceBase
6         {
7                 public ServiceBase() { }
8
9                 protected virtual void Dispose( bool disposing ) { }\r
10
11                 protected virtual void OnStart(string[] args) { }
12
13                 protected virtual void OnStop() { }
14
15                 protected string ServiceName;
16
17                 public static void Run(ServiceBase[] ServicesToRun) { }
18
19         }
20 }