Table of Contents

Interface IDataModelMappingHandler

Namespace
PnP.Core.Model
Assembly
PnP.Core.dll

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

public interface IDataModelMappingHandler

Properties

MappingHandler

Handler that will fire when a property mapping does cannot be done automatically

Func<FromJson, object> MappingHandler { get; set; }

Property Value

Func<FromJson, object>

PostMappingHandler

Handler that will fire after the full json to model operation was done

Action<string> PostMappingHandler { get; set; }

Property Value

Action<string>