Interface IDataModelMappingHandler
Interface to the define the basic behavior of Domain Model object that can be mapped from a JSON response coming out of a REST request
Namespace: PnP.Core.Model
Assembly: PnP.Core.dll
Syntax
public interface IDataModelMappingHandler
Properties
MappingHandler
Handler that will fire when a property mapping does cannot be done automatically
Declaration
Func<FromJson, object> MappingHandler { get; set; }
Property Value
Func<FromJson, System.Object>
|
PostMappingHandler
Handler that will fire after the full json to model operation was done
Declaration
Action<string> PostMappingHandler { get; set; }
Property Value
Action<System.String>
|