C# 클래스 Microsoft.Common.Core.Threading.DelayedAsyncAction

파일 보기 프로젝트 열기: Microsoft/RTVS 1 사용 예제들

Private Properties

프로퍼티 타입 설명

공개 메소드들

메소드 설명
DelayedAsyncAction ( int timeout, Func action = null ) : System

DelayedAsyncAction invokes action after specified timeout when Invoke is called. If Invoke is called again before timeout, previous invocation request is cancelled and action will be invoked only once

Invoke ( Func action = null ) : void

메소드 상세

DelayedAsyncAction() 공개 메소드

DelayedAsyncAction invokes action after specified timeout when Invoke is called. If Invoke is called again before timeout, previous invocation request is cancelled and action will be invoked only once
public DelayedAsyncAction ( int timeout, Func action = null ) : System
timeout int
action Func
리턴 System

Invoke() 공개 메소드

public Invoke ( Func action = null ) : void
action Func
리턴 void