IScheduledWorkItem::SetErrorRetryInterval method (mstask.h)

[[This API may be altered or unavailable in subsequent versions of the operating system or product. Please use the Task Scheduler 2.0 Interfaces instead.] ]

Sets the time interval, in minutes, between Task Scheduler's attempts to run a work item after an error occurs. This method is not implemented.

Syntax

HRESULT SetErrorRetryInterval(
  WORD wRetryInterval
);

Parameters

wRetryInterval

A value that specifies the interval between error retries for the current work item, in minutes.

Return value

The SetErrorRetryInterval method returns one of the following values.

Return code Description
S_OK
The operation was successful.
E_INVALIDARG
The arguments are not valid.
E_OUTOFMEMORY
Not enough memory is available.
E_NOTIMPL
Not implemented.

Remarks

Programs must call the IPersistFile::Save method after calling SetErrorRetryInterval to update the error retry interval.

Requirements

Requirement Value
Minimum supported client Windows 2000 Professional [desktop apps only]
Minimum supported server Windows 2000 Server [desktop apps only]
Target Platform Windows
Header mstask.h
Library Mstask.lib
DLL Mstask.dll
Redistributable Internet Explorer 4.0 or later on Windows NT 4.0 and Windows 95

See also

IScheduledWorkItem

IScheduledWorkItem::GetErrorRetryInterval