DOFRequestSubscriberespond Method OpenDOF Object Access Library
Respond with a result for this request.

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

C#
public abstract void respond()
Remarks

Respond with a result for this request. Returns without a value since the Provider.subscribe(Provide, Subscribe, Property, int) does not return a value. However, this method triggers the Provider.get(Provide, Get, Property) to be called, which does return a value through Get.respond(DOFValue) . Therefore, if one of the
respond
methods is not called the request will timeout.

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