C# 클래스 VS_QuickNavigation.Utils.DeferredAction

Represents a timer which performs an action on the UI thread when time elapses. Rescheduling is supported.
상속: IDisposable
파일 보기 프로젝트 열기: thennequin/VS-QuickNavigation

공개 메소드들

메소드 설명
Create ( System.Action action ) : DeferredAction

Creates a new DeferredAction.

Defer ( int milliseconds ) : void

Defers performing the action until after time elapses. Repeated calls will reschedule the action if it has not already been performed.

Dispose ( ) : void

비공개 메소드들

메소드 설명
DeferredAction ( System.Action action ) : System

메소드 상세

Create() 공개 정적인 메소드

Creates a new DeferredAction.
public static Create ( System.Action action ) : DeferredAction
action System.Action /// The action that will be deferred. It is not performed until after is called. ///
리턴 DeferredAction

Defer() 공개 메소드

Defers performing the action until after time elapses. Repeated calls will reschedule the action if it has not already been performed.
public Defer ( int milliseconds ) : void
milliseconds int /// The amount of time to wait before performing the action. ///
리턴 void

Dispose() 공개 메소드

public Dispose ( ) : void
리턴 void