Merge pull request #2333 from joelmartinez/docs-classic-fix
[mono.git] / mcs / class / System.ServiceProcess / System.ServiceProcess / ServiceInstaller.cs
index 25ee8c27e8f7d228f4846c54088f5db4ee6f6b93..20b4858ae40a30a0d0c40ebc1674b9f6f2c03105 100644 (file)
@@ -32,9 +32,7 @@ using System;
 using System.Collections;
 using System.ComponentModel;
 using System.Configuration.Install;
-#if NET_2_0
 using System.Runtime.InteropServices;
-#endif
 
 namespace System.ServiceProcess
 {
@@ -49,9 +47,19 @@ namespace System.ServiceProcess
                private string service_name;
                private string[] services_depended_on;
                private ServiceStartMode start_type;
-
-#if NET_2_0
                private string description;
+               private bool delayedAutoStart;
+
+               [DefaultValue(false)]
+               [ServiceProcessDescription("Indicates that the service's start should be delayed after other automatically started services have started.")]
+               public bool DelayedAutoStart {
+                       get {
+                               return delayedAutoStart;
+                       }
+                       set {
+                               delayedAutoStart = value;
+                       }
+               }
 
                [ComVisible (false)]
                [DefaultValue ("")]
@@ -64,12 +72,9 @@ namespace System.ServiceProcess
                                description = value;
                        }
                }
-#endif
 
                [DefaultValue("")]
-#if NET_2_0
                [ServiceProcessDescription ("Indicates the friendly name that identifies the service to the user.")]
-#endif
                public string DisplayName {
                        get {
                                return display_name;
@@ -80,9 +85,7 @@ namespace System.ServiceProcess
                }
 
                [DefaultValue("")]
-#if NET_2_0
                [ServiceProcessDescription ("Indicates the name used by the system to identify this service.")]
-#endif
                [TypeConverter("System.Diagnostics.Design.StringValueConverter, " + Consts.AssemblySystem_Design)]
                public string ServiceName {
                        get {
@@ -95,9 +98,7 @@ namespace System.ServiceProcess
                        }
                }
 
-#if NET_2_0
                [ServiceProcessDescription ("Indicates the services that must be running in order for this service to run.")]
-#endif
                public string[] ServicesDependedOn {
                        get {
                                return services_depended_on;
@@ -108,9 +109,7 @@ namespace System.ServiceProcess
                }
 
                [DefaultValue (ServiceStartMode.Manual)]
-#if NET_2_0
                [ServiceProcessDescription ("Indicates how and when this service is started.")]
-#endif
                public ServiceStartMode StartType {
                        get {
                                return start_type;