System.ServiceProcess.ServiceController Arguments within the 'args' array passed to Start cannot be null. MachineName '{0}' is invalid. Cannot start service '{0}' on computer '{1}'. The value of argument '{0}' ({1}) is invalid for Enum type '{2}'. Invalid value '{1}' for parameter '{0}'. Service '{0}' was not found on computer '{1}'. Cannot open Service Control Manager on computer '{0}'. This operation might require other privileges. Cannot open '{0}' service on computer '{1}'. Cannot pause '{0}' service on computer '{1}'. Cannot resume '{0}' service on computer '{1}'. Cannot stop '{0}' service on computer '{1}'. The operation requested for service '{0}' has not been completed within the specified time interval. ServiceController enables manipulating and accessing Windows services and it is not applicable for other operating systems. Cannot change CanStop, CanPauseAndContinue, CanShutdown, CanHandlePowerEvent, or CanHandleSessionChangeEvent property values after the service has been started. Cannot change service name when the service is running. Service name '{0}' contains invalid characters, is empty, or is too long (max length = {1}). Service has not been supplied. At least one object derived from ServiceBase is required in order to run. Cannot start service from the command line or a debugger. A Windows Service must first be installed and then started with the ServerExplorer, Windows Services Administrative tool or the NET START command. UpdatePendingStatus can only be called during the handling of Start, Stop, Pause and Continue commands. Service started successfully. Service stopped successfully. Service paused successfully. Service continued successfully. Service command was processed successfully. Service cannot be started. {0} Failed to stop service. {0} Failed to pause service. {0} Failed to continue service. {0} Failed to process session change. {0} Failed to process service command. {0} Service has been successfully shut down. Failed to shut down service. The error that occurred was: {0}. PowerEvent handled successfully by the service. Failed in handling the PowerEvent. The error that occurred was: {0}. Cannot control '{0}' service on computer '{1}'. Specifies that null is allowed as an input even if the corresponding type disallows it. Specifies that null is disallowed as an input even if the corresponding type allows it. Specifies that an output may be null even if the corresponding type disallows it. Specifies that an output will not be null even if the corresponding type allows it. Specifies that an input argument was not null when the call returns. Specifies that when a method returns , the parameter may be null even if the corresponding type disallows it. Initializes the attribute with the specified return value condition. The return value condition. If the method returns this value, the associated parameter may be null. Gets the return value condition. Specifies that when a method returns , the parameter will not be null even if the corresponding type allows it. Initializes the attribute with the specified return value condition. The return value condition. If the method returns this value, the associated parameter will not be null. Gets the return value condition. Specifies that the output will be non-null if the named parameter is non-null. Initializes the attribute with the associated parameter name. The associated parameter name. The output will be non-null if the argument to the parameter specified is non-null. Gets the associated parameter name. Applied to a method that will never return under any circumstance. Specifies that the method will not return if the associated Boolean parameter is passed the specified value. Initializes the attribute with the specified parameter value. The condition parameter value. Code after the method will be considered unreachable by diagnostics if the argument to the associated parameter matches this value. Gets the condition parameter value. Specifies that the method or property will ensure that the listed field and property members have not-null values. Initializes the attribute with a field or property member. The field or property member that is promised to be not-null. Initializes the attribute with the list of field and property members. The list of field and property members that are promised to be not-null. Gets field or property member names. Specifies that the method or property will ensure that the listed field and property members have not-null values when returning with the specified return value condition. Initializes the attribute with the specified return value condition and a field or property member. The return value condition. If the method returns this value, the associated parameter will not be null. The field or property member that is promised to be not-null. Initializes the attribute with the specified return value condition and list of field and property members. The return value condition. If the method returns this value, the associated parameter will not be null. The list of field and property members that are promised to be not-null. Gets the return value condition. Gets field or property member names. Base type for all platform-specific API attributes. Records the platform that the project targeted. Records the operating system (and minimum version) that supports an API. Multiple attributes can be applied to indicate support on multiple operating systems. Callers can apply a or use guards to prevent calls to APIs on unsupported operating systems. A given platform should only be specified once. Marks APIs that were removed in a given operating system version. Primarily used by OS bindings to indicate APIs that are only available in earlier versions. Annotates a custom guard field, property or method with a supported platform name and optional version. Multiple attributes can be applied to indicate guard for multiple supported platforms. Callers can apply a to a field, property or method and use that field, property or method in a conditional or assert statements in order to safely call platform specific APIs. The type of the field or property should be boolean, the method return type should be boolean in order to be used as platform guard. Annotates the custom guard field, property or method with an unsupported platform name and optional version. Multiple attributes can be applied to indicate guard for multiple unsupported platforms. Callers can apply a to a field, property or method and use that field, property or method in a conditional or assert statements as a guard to safely call APIs unsupported on those platforms. The type of the field or property should be boolean, the method return type should be boolean in order to be used as platform guard.