'Declaration
Public Sub MapMember( _ ByVal memberMappingDefinition As AbstractMemberMappingDefinition, _ ByVal targetType As Type, _ ByVal targetObject As Object, _ ByVal memberInfo As MemberInfo, _ ByVal mappingContext As AbstractMappingContext, _ ByVal mapper As AbstractMapper _ )
'Usage
Dim instance As AbstractMappingProvider Dim memberMappingDefinition As AbstractMemberMappingDefinition Dim targetType As Type Dim targetObject As Object Dim memberInfo As MemberInfo Dim mappingContext As AbstractMappingContext Dim mapper As AbstractMapper instance.MapMember(memberMappingDefinition, targetType, targetObject, memberInfo, mappingContext, mapper)
public void MapMember( AbstractMemberMappingDefinition memberMappingDefinition, Type targetType, object targetObject, MemberInfo memberInfo, AbstractMappingContext mappingContext, AbstractMapper mapper )
public: void MapMember( AbstractMemberMappingDefinition^ memberMappingDefinition, Type^ targetType, Object^ targetObject, MemberInfo^ memberInfo, AbstractMappingContext^ mappingContext, AbstractMapper^ mapper )
Parameters
- memberMappingDefinition
- The mapping definition for the member being mapped.
The value of this parameter cannot be
null
(Nothing
in Visual Basic). - targetType
- The type of the target object.
The value of this parameter cannot be
null
(Nothing
in Visual Basic). - targetObject
- The target object.
The value of this parameter cannot be
null
(Nothing
in Visual Basic). - memberInfo
- Information about the member being mapped.
The value of this parameter cannot be
null
(Nothing
in Visual Basic). - mappingContext
- The mapping context.
The value of this parameter cannot be
null
(Nothing
in Visual Basic). - mapper
- The current mapper.
The value of this parameter cannot be
null
(Nothing
in Visual Basic).