Task.Create (DateTime, TimeSpan, DateTime) Method

A scheduled task
Public Sub Create( _ 
ByVal start_time As Date, _ 
ByVal repeat As TimeSpan, _ 
ByVal last_run As Date
)
This language is not supported or no code example is available.
public void Create( 
DateTime start_time
TimeSpan repeat
DateTime last_run 
)
This language is not supported or no code example is available.
public:  
void Create( 
DateTime start_time
TimeSpan repeat
DateTime last_run 
)
This language is not supported or no code example is available.
public function Create( 
start_time : DateTime
repeat : TimeSpan
last_run : DateTime 
);
This language is not supported or no code example is available.

Parameters

start_time
DateTime

the time from which to start running this task

repeat
TimeSpan

whether or not it should be repeated

last_run
DateTime

the last time this task was run

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1

In this article

Definition