Gets a list of the models configured to load at boot on the target.

Namespace:  Quanser.Targets
Assembly:  Quanser.Targets (in Quanser.Targets.dll)

Syntax

Visual Basic (Declaration)
Public Sub GetModelsLoadedAtBoot ( _
	callback As IModelEnumeration, _
	context As Object _
)
C#
public void GetModelsLoadedAtBoot(
	IModelEnumeration callback,
	Object context
)
Visual C++
public:
void GetModelsLoadedAtBoot(
	IModelEnumeration^ callback, 
	Object^ context
)
JavaScript
function getModelsLoadedAtBoot(callback, context);

Parameters

callback
Type: Quanser.Targets..::.IModelEnumeration
The interface whose methods are invoked for each model configured to load at boot.
context
Type: System..::.Object
An arbitrary value passed to each interface method.

Remarks

This method enumerates the models that are configured to load when the QUARC Target boots. The given interface is invoked for each model configured to load at boot. The callback can be used to update a graphical user interface listing the models configured to load at boot.

See Also