C# Class Caliburn.Micro.Coroutine

Manages coroutine execution.
Mostra file Open project: bryanhunter/CaliburnMicroTalk

Public Properties

Property Type Description
CreateParentEnumerator IResult>.Func

Public Methods

Method Description
BeginExecute ( IEnumerator coroutine, ActionExecutionContext context = null, EventHandler callback = null ) : void

Executes a coroutine.

Method Details

BeginExecute() public static method

Executes a coroutine.
public static BeginExecute ( IEnumerator coroutine, ActionExecutionContext context = null, EventHandler callback = null ) : void
coroutine IEnumerator The coroutine to execute.
context ActionExecutionContext The context to execute the coroutine within.
callback EventHandler The completion callback for the coroutine.
return void

Property Details

CreateParentEnumerator public_oe static_oe property

Creates the parent enumerator.
public static Func,IResult> CreateParentEnumerator
return IResult>.Func