Click or drag to resize
MvEndPointExecAsyncGlobalCallback Method
Callback that executes an asynchronous call to a remote function.

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 ExecAsyncGlobalCallback(
	string funNm,
	MvValue[] args,
	bool inTrans = true
)

Parameters

funNm
Type: SystemString
The function name to invoke.
args
Type: RW.Server.ComponentMvValue
The arguments sent to the function funNm.
inTrans (Optional)
Type: SystemBoolean
Indicates if the callback must be executed using the transaction mechanism or not (see Transaction control in MvComponent). If equal to true and if no current transaction has been initialized, a new one is implicitly created and commited.

Return Value

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