Callback invoked for each URI enumerated.

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

Syntax

Visual Basic (Declaration)
Function EnumerateURI ( _
	target As Target, _
	context As Object, _
	key As String, _
	uri As String _
) As Integer
C#
int EnumerateURI(
	Target target,
	Object context,
	string key,
	string uri
)
Visual C++
int EnumerateURI(
	Target^ target, 
	Object^ context, 
	String^ key, 
	String^ uri
)
JavaScript
function enumerateURI(target, context, key, uri);

Parameters

target
Type: Quanser.Targets..::.Target
The Target instance.
context
Type: System..::.Object
The context supplied when the enumeration was started.
key
Type: System..::.String
The key associated with the URI.
uri
Type: System..::.String
The URI itself, as a string.

Return Value

Remarks

This callback is invoked for each URI enumerated. The key associated with the URI as well as the URI itself are provided. The context passed to the original enumeration method is also supplied.

See Also