 | IdleSettingsWaitTimeout Property |
Gets or sets a value that indicates the amount of time that the Task Scheduler will wait for an idle condition to occur. If no
value is specified for this property, then the Task Scheduler service will wait indefinitely for an idle condition to occur.
Namespace:
Microsoft.Win32.TaskScheduler
Assembly:
Microsoft.Win32.TaskScheduler (in Microsoft.Win32.TaskScheduler.dll) Version: 2.10.1
Syntaxpublic TimeSpan WaitTimeout { get; set; }
Public Property WaitTimeout As TimeSpan
Get
Set
public:
property TimeSpan WaitTimeout {
TimeSpan get ();
void set (TimeSpan value);
}
Request Example
View SourceProperty Value
Type:
TimeSpan
A value that indicates the amount of time that the Task Scheduler will wait for an idle condition to occur. The minimum time
allowed is 1 minute. If this value is
TimeSpan.Zero, then the delay will be the equivalent of "Do not wait".
See Also