Click or drag to resize
RpObjectExecSyncCallback Method
This function executes a given function in synchronous mode on the Server object associated with the representation object.

Namespace: RW.Server.Component
Assembly: RW.Server.Component (in RW.Server.Component.dll) Version: 6.3.0.0 (0.8.0.0)
Syntax
public virtual bool ExecSyncCallback(
	string funName,
	MvValue[] argv,
	MvValue result
)

Parameters

funName
Type: SystemString
: The function name.
argv
Type: RW.Server.ComponentMvValue
: The arguments.
result
Type: RW.Server.ComponentMvValue
Must contain the default return value of the function funName. When the execSyncCallback function returns, it contains the result of funNamm. It must be not equal to null.

Return Value

Type: Boolean
false if the request callback couldn't be sent, true otherwise
See Also