C# 클래스 Open.Core.Common.ModelBase

The base class for models.
상속: NotifyPropertyChangedBase
파일 보기 프로젝트 열기: philcockfield/Open.TestHarness.SL

공개 메소드들

메소드 설명
ModelBase ( ) : System

보호된 메소드들

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

Invokes an action asynchonously.

BeginInvoke ( System.Action action, System.Action onComplete ) : BackgroundWorker

Invokes an action asynchonously and then calls back when complete on the thread that began the invocation.

The callback will be invoked irrespective of whether the operation was cancelled via the BackgroundWorker object. If supporting cancellable operations, use your reference to the 'BackgroundWorker' to handle cancelled operations within the calling code.

BeginInvoke ( System.Action action, Action onComplete ) : BackgroundWorker

Invokes an action asynchonously and then calls back when complete on the thread that began the invocation.

The callback will be invoked irrespective of whether the operation was cancelled via the BackgroundWorker object. If supporting cancellable operations, use your reference to the 'BackgroundWorker' to handle cancelled operations within the calling code.

InvokeOnUiThread ( System.Action action ) : void

Invokes the given action on the UI thread synchronously.

비공개 메소드들

메소드 설명
InvokeAsynchronous ( System.Action action, Action onComplete ) : BackgroundWorker
InvokeSynchronous ( System.Action action, Action onComplete ) : void
OnAsyncError ( AsyncCallbackArgs e ) : void
ProcessAction ( System.Action action ) : AsyncCallbackArgs

메소드 상세

BeginInvoke() 보호된 메소드

Invokes an action asynchonously.
protected BeginInvoke ( System.Action action ) : BackgroundWorker
action System.Action The action to invoke.
리턴 System.ComponentModel.BackgroundWorker

BeginInvoke() 보호된 메소드

Invokes an action asynchonously and then calls back when complete on the thread that began the invocation.
The callback will be invoked irrespective of whether the operation was cancelled via the BackgroundWorker object. If supporting cancellable operations, use your reference to the 'BackgroundWorker' to handle cancelled operations within the calling code.
protected BeginInvoke ( System.Action action, System.Action onComplete ) : BackgroundWorker
action System.Action The action to invoke.
onComplete System.Action The callback to invoke when complete.
리턴 System.ComponentModel.BackgroundWorker

BeginInvoke() 보호된 메소드

Invokes an action asynchonously and then calls back when complete on the thread that began the invocation.
The callback will be invoked irrespective of whether the operation was cancelled via the BackgroundWorker object. If supporting cancellable operations, use your reference to the 'BackgroundWorker' to handle cancelled operations within the calling code.
protected BeginInvoke ( System.Action action, Action onComplete ) : BackgroundWorker
action System.Action The action to invoke.
onComplete Action /// The callback to invoke when complete, including error state. /// Use the IsHandled property to prevent the error from being thrown. ///
리턴 System.ComponentModel.BackgroundWorker

InvokeOnUiThread() 보호된 메소드

Invokes the given action on the UI thread synchronously.
protected InvokeOnUiThread ( System.Action action ) : void
action System.Action The action to invoke.
리턴 void

ModelBase() 공개 메소드

public ModelBase ( ) : System
리턴 System