Gets a list of the URIs upon which the QUARC Target Manager is currently serving.

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

Syntax

Visual Basic (Declaration)
Public Sub GetURIs ( _
	callback As IUriEnumeration, _
	context As Object _
)
C#
public void GetURIs(
	IUriEnumeration callback,
	Object context
)
Visual C++
public:
void GetURIs(
	IUriEnumeration^ callback, 
	Object^ context
)
JavaScript
function getURIs(callback, context);

Parameters

callback
Type: Quanser.Targets..::.IUriEnumeration
The interface whose methods are invoked for each URI.
context
Type: System..::.Object
An arbitrary value passed to the interface methods.

Remarks

The QUARC Target Manager running on the target is able to serve on more than one URI at the same time. This method returns a list of the URIs upon which the QUARC Target Manager is currently serving. For each URI, the given callback is invoked.

See Also