C# 클래스 Catel.Services.SchedulerService

Service that allows scheduling of actions in the future.
상속: Catel.Services.ViewModelServiceBase, ISchedulerService
파일 보기 프로젝트 열기: Catel/Catel

공개 메소드들

메소드 설명
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