DOFRequestInvokerespond Method (IListDOFValue)OpenDOF Object Access Library
Respond with a list result (the result of a method which returns multiple values).

Namespace: org.opendof.core.oal
Assembly: dof-oal (in dof-oal.dll) Version: 7.0.1.2
Syntax

C#
public abstract void respond(
	IList<DOFValue> values
)

Parameters

values
Type: System.Collections.GenericIListDOFValue
The list of values. Must not be null.
Remarks

Respond with a list result (the result of a method which returns multiple values).

NOTE: Often a call to

respond(...)
should be immediately followed by
return
in order to maintain the execution flow of a native
return
statement.
See Also

Reference