Click or drag to resize
MvEndPointExecAsyncObjectCallback Method
Callback that executes an asynchronous call on a remote 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 ExecAsyncObjectCallback(
	MvRef mvref,
	string funNm,
	MvValue[] args,
	bool inTrans = true
)

Parameters

mvref
Type: RW.Server.ComponentMvRef
The object reference for the object.
funNm
Type: SystemString
The function name to invoke.
args
Type: RW.Server.ComponentMvValue
The arguments passed to the function funNm.
inTrans (Optional)
Type: SystemBoolean
This parameter indicates whether the callback must be executed using the transaction mechanism or not (see Transaction control in MvComponent). If this parameter is set to true and no current transaction has been initialized, a new one is implicitly created and committed.

Return Value

Type: Boolean
false if the request callback couldn't be sent, true otherwise.
Remarks
The function funNm is invoked on the remote object identified by the reference mvref. mvref.
See Also