Calls a method on the FwxServer.

Namespace: Ico.Fwx.ClientWrapper
Assembly: IcoFwxClientWrapper (in IcoFwxClientWrapper.dll) Version: 10.97.212.0 (10.97.212.00)

Syntax

C#
public MethodCallResult MethodCall(
	string pointName,
	string methodName,
	Object[] inputArguments
)
Visual Basic
Public Function MethodCall ( _
	pointName As String, _
	methodName As String, _
	inputArguments As Object() _
) As MethodCallResult
JScript
public function MethodCall(
	pointName : String, 
	methodName : String, 
	inputArguments : Object[]
) : MethodCallResult

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.

See Also