Build 1.01.318.0

[This is preliminary documentation and is subject to change.]

Used to process a method call.

Namespace: Opc.Ua
Assembly: Opc.Ua.Core (in Opc.Ua.Core.dll) Version: 1.1.318.1 (1.01.318.1)

Syntax

C#
public delegate ServiceResult GenericMethodCalledEventHandler(
	ISystemContext context,
	MethodState method,
	IList<Object> inputArguments,
	IList<Object> outputArguments
)
Visual Basic
Public Delegate Function GenericMethodCalledEventHandler ( _
	context As ISystemContext, _
	method As MethodState, _
	inputArguments As IList(Of Object), _
	outputArguments As IList(Of Object) _
) As ServiceResult
Visual C++
public delegate ServiceResult^ GenericMethodCalledEventHandler(
	ISystemContext^ context, 
	MethodState^ method, 
	IList<Object^>^ inputArguments, 
	IList<Object^>^ outputArguments
)

Parameters

context
Type: Opc.Ua..::..ISystemContext
method
Type: Opc.Ua..::..MethodState
inputArguments
Type: System.Collections.Generic..::..IList<(Of <(<'Object>)>)>
outputArguments
Type: System.Collections.Generic..::..IList<(Of <(<'Object>)>)>

See Also