Interface IMapperActionManager
Hold actions that can be performed after objects are mapped
Assembly: Onbox.Core.dll
Syntax
public interface IMapperActionManager
Methods
|
Improve this Doc
View Source
AddMappingPostAction<TSource, TTaget>(Action<TSource, TTaget>)
Adds a new an action that will be run after the map is complete
Declaration
void AddMappingPostAction<TSource, TTaget>(Action<TSource, TTaget> action)
where TSource : new()
where TTaget : new()
Parameters
Type |
Name |
Description |
System.Action<TSource, TTaget> |
action |
|
Type Parameters
Name |
Description |
TSource |
|
TTaget |
|
|
Improve this Doc
View Source
GetMapPostAction(Type, Type)
Declaration
Delegate GetMapPostAction(Type source, Type target)
Parameters
Type |
Name |
Description |
System.Type |
source |
|
System.Type |
target |
|
Returns
Type |
Description |
System.Delegate |
|