C# 클래스 YamuiFramework.Helper.DelayedAction

Simple class to delay an action
상속: IDisposable
파일 보기 프로젝트 열기: jcaillon/3P

공개 메소드들

메소드 설명
CleanAll ( ) : void

Clean all delayed actions started

DelayedAction ( int msDelay, System.Action toDo ) : System

Use this class to do an action after a given delay

Dispose ( ) : void
Stop ( ) : void

Stop the recurrent action

비공개 메소드들

메소드 설명
TimerOnElapsed ( object sender, System.Timers.ElapsedEventArgs elapsedEventArgs ) : void

메소드 상세

CleanAll() 공개 정적인 메소드

Clean all delayed actions started
public static CleanAll ( ) : void
리턴 void

DelayedAction() 공개 메소드

Use this class to do an action after a given delay
public DelayedAction ( int msDelay, System.Action toDo ) : System
msDelay int
toDo System.Action
리턴 System

Dispose() 공개 메소드

public Dispose ( ) : void
리턴 void

Stop() 공개 메소드

Stop the recurrent action
public Stop ( ) : void
리턴 void