Five New Optimizely Certifications are Here! Validate your expertise and advance your career with our latest certification exams. Click here to find out more

Interface IScheduledJob

Minimal interface for all classes that should be executed by the ISchedulerService

Namespace: EPiServer.Scheduler.Internal
Assembly: EPiServer.dll
Version: 12.0.3
Syntax
public interface IScheduledJob

Properties

ID

Gets the identifier of the scheduled job this job instance represents.

Declaration
Guid ID { get; }
Property Value
Type Description
System.Guid

Methods

Execute()

Executes the task that it has been scheduled to do.

Declaration
string Execute()
Returns
Type Description
System.String

A string describing the outcome

Extension Methods