Gets a list of the models that have been downloaded to the QUARC Target.

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

Syntax

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

Parameters

callback
Type: Quanser.Targets..::.IModelEnumeration
The interface to invoke for each model that has been downloaded.
context
Type: System..::.Object
An arbitrary value to pass to the interface methods.

Remarks

This method invokes the given callback for each model that has been downloaded to the QUARC Target. Any model downloaded to the target is available for loading, or running, on the target. The callback may be used to update a graphical user interface, for example.

See Also