This class represents a QUARC Target.

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

Syntax

Visual Basic (Declaration)
Public Class Target _
	Implements IDisposable
C#
public class Target : IDisposable
Visual C++
public ref class Target : IDisposable
JavaScript
Quanser.Targets.Target = function();

Type.createClass(
	'Quanser.Targets.Target',
	null,
	IDisposable);

Remarks

The methods of this class are used to communicate with a QUARC Target and facilitate getting information from the target as well as downloading models, loading models on the target, stopping models, configuring models, interfacing with the standard I/O streams of models, etc.

This class should be created in the context of a "using" statement to ensure that the Dispose method is called to release unmanaged resources, even in the event of an exception. See using Statement (C# Reference).

Inheritance Hierarchy

System..::.Object
  Quanser.Targets..::.Target

See Also