Interface IUiLoader
Declaration
public interface IUiLoader
Methods
Load<TController>()
Declaration
TController Load<TController>() where TController : Controller
Returns
<TController>
Type Parameters
TController
Load<TController>(string)
Declaration
TController Load<TController>(string name) where TController : Controller
Returns
<TController>
Parameters
Type | Name |
---|---|
System.String | name |
Type Parameters
TController
LoadAsync<TController>(Action<TController>)
Declaration
void LoadAsync<TController>(Action<TController> onLoad) where TController : Controller
Parameters
Type | Name |
---|---|
System.Action<<TController>> | onLoad |
Type Parameters
TController
LoadAsync<TController>(string, Action<TController>)
Declaration
void LoadAsync<TController>(string name, Action<TController> onLoad) where TController : Controller
Parameters
Type | Name |
---|---|
System.String | name |
System.Action<<TController>> | onLoad |
Type Parameters
TController