Build 1.01.318.0

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

A delegate for a function that converts an array element.

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 Object CastArrayElementHandler(
	Object source,
	BuiltInType srcType,
	BuiltInType dstType
)
Visual Basic
Public Delegate Function CastArrayElementHandler ( _
	source As Object, _
	srcType As BuiltInType, _
	dstType As BuiltInType _
) As Object
Visual C++
public delegate Object^ CastArrayElementHandler(
	Object^ source, 
	BuiltInType srcType, 
	BuiltInType dstType
)

Parameters

source
Type: System..::..Object
The element to be converted.
srcType
Type: Opc.Ua..::..BuiltInType
The type of the source element.
dstType
Type: Opc.Ua..::..BuiltInType
The type of the converted value.

Return Value

The converted

See Also