DOFRequestInvokerespond Method (DOFValue)OpenDOF Object Access Library
Respond with a value result with a variable number of values.

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

C#
public abstract void respond(
	params DOFValue[] values
)

Parameters

values
Type: org.opendof.core.oalDOFValue
The values to return.
Remarks

Respond with a value result with a variable number of values. If no values are entered, this is equivalent to causing an acknowledgement to be sent back to the requestor. Therefore, if one of the
respond
methods is not called the request will timeout, even if it is a method with no outputs

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