Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

ServiceBase::RequestAdditionalTime Method (Int32)

 

Requests additional time for a pending operation.

Namespace:   System.ServiceProcess
Assembly:  System.ServiceProcess (in System.ServiceProcess.dll)

public:
[ComVisibleAttribute(false)]
void RequestAdditionalTime(
	int milliseconds
)

Parameters

milliseconds
Type: System::Int32

The requested time in milliseconds.

Exception Condition
InvalidOperationException

The service is not in a pending state.

The RequestAdditionalTime method is intended to be called by the overridden OnContinue, OnPause, OnStart, or OnStop methods to request additional time for a pending operation, to prevent the Service Control Manager (SCM) from marking the service as not responding. If the pending operation is not a continue, pause, start, or stop, an InvalidOperationException is thrown.

.NET Framework
Available since 2.0
Return to top
Show:
© 2017 Microsoft