C# 클래스 System.Threading.Invokers

Extension methods and utilities for ISynchronizedInvokes
파일 보기 프로젝트 열기: madelson/Emotiv-Experimenter

공개 메소드들

메소드 설명
BeginInvoke ( this invoker, System.Action action ) : IAsyncResult

Begin invoking an action

Invoke ( this invoker, System.Action action ) : void

Invoke an action

InvokeSafe ( this invoker, System.Action action ) : void

As invoke, but always called on the correct thread

메소드 상세

BeginInvoke() 공개 정적인 메소드

Begin invoking an action
public static BeginInvoke ( this invoker, System.Action action ) : IAsyncResult
invoker this
action System.Action
리턴 IAsyncResult

Invoke() 공개 정적인 메소드

Invoke an action
public static Invoke ( this invoker, System.Action action ) : void
invoker this
action System.Action
리턴 void

InvokeSafe() 공개 정적인 메소드

As invoke, but always called on the correct thread
public static InvokeSafe ( this invoker, System.Action action ) : void
invoker this
action System.Action
리턴 void