'Declaration
<ExtensionAttribute()> Public Overloads Shared Sub ReadTarget( _ ByVal mapper As UAClientMapper, _ ByVal targetObject As Object, _ ByVal mappingTag As String, _ ByVal recurse As Boolean _ )
'Usage
Dim mapper As UAClientMapper Dim targetObject As Object Dim mappingTag As String Dim recurse As Boolean UAMapperExtension.ReadTarget(mapper, targetObject, mappingTag, recurse)
[Extension()] public static void ReadTarget( UAClientMapper mapper, object targetObject, string mappingTag, bool recurse )
[Extension()] public: static void ReadTarget( UAClientMapper^ mapper, Object^ targetObject, String^ mappingTag, bool recurse )
Parameters
- mapper
- The mapper object that will perform the operation.
The value of this parameter cannot be
null
(Nothing
in Visual Basic). - targetObject
- The object being targeted.
The value of this parameter cannot be
null
(Nothing
in Visual Basic). - mappingTag
- The operation will be performed only on mappings tagged with this mapping tag.
The value of this parameter cannot be
null
(Nothing
in Visual Basic). - recurse
true
to operate on sub-targets (mapped members of the target) recursively;false
otherwise.