C# Класс Catel.Services.SchedulerService

Service that allows scheduling of actions in the future.
Наследование: Catel.Services.ViewModelServiceBase, ISchedulerService
Показать файл Открыть проект

Открытые методы

Метод Описание
Schedule ( System.Action action, System.DateTime dateTime ) : void

Schedules the specified action in an absolute DateTime.

Schedule ( System.Action action, System.TimeSpan timeSpan ) : void

Schedules the specified action in a relative TimeSpan.

Описание методов

Schedule() публичный Метод

Schedules the specified action in an absolute DateTime.
The is null. The is null. The is in the past.
public Schedule ( System.Action action, System.DateTime dateTime ) : void
action System.Action The action.
dateTime System.DateTime The date time.
Результат void

Schedule() публичный Метод

Schedules the specified action in a relative TimeSpan.
The is null. The is null. The is in the past.
public Schedule ( System.Action action, System.TimeSpan timeSpan ) : void
action System.Action The action.
timeSpan System.TimeSpan The time span.
Результат void