Calls a method on the FwxServer.
Namespace: Ico.Fwx.ClientWrapperAssembly: IcoFwxClientWrapper (in IcoFwxClientWrapper.dll) Version: 10.97.212.0 (10.97.212.00)
Syntax
C# |
---|
public void MethodCallAsync(
string pointName,
string methodName,
Object[] inputArguments,
MethodCallDoneDelegate methodCallDone,
Object userState
) |
Visual Basic |
---|
Public Sub MethodCallAsync ( _
pointName As String, _
methodName As String, _
inputArguments As Object(), _
methodCallDone As MethodCallDoneDelegate, _
userState As Object _
) |
JScript |
---|
public function MethodCallAsync(
pointName : String,
methodName : String,
inputArguments : Object[],
methodCallDone : MethodCallDoneDelegate,
userState : Object
) |
Parameters
- pointName
- Type: System..::..String
The point name where to call the method on.
- methodName
- Type: System..::..String
The method name to call.
- inputArguments
- Type: array<System..::..Object>[]()[][]
Optional input arguments to the method.
- methodCallDone
- Type: Ico.Fwx.ClientWrapper..::..MethodCallDoneDelegate
An optional callback with the result of the method call operation. If the MethodCallAsync function is called from an UI thread, the callback will
arrive also on the UI thread.
- userState
- Type: System..::..Object
An optional user object.
See Also