Click or drag to resize

OrchestratorConfigTypeDefiner Property

A function to determine data types for those fields that are not listed in ExplicitTypeDefinitions. The function takes a field name and returns an ItemDef consisting of a type and format for the field. Default function assumes every field is of string type and has no format, i.e.:
fn => new ItemDef(ItemType.String, null)
Any exception thrown by this function will cause the process shutdown with a completion status of Failed.

Namespace:  Mavidian.DataConveyer.Orchestrators
Assembly:  DataConveyer (in DataConveyer.dll) Version: 3.4.6+1324144ff7
Syntax
public Func<string, ItemDef> TypeDefiner { get; set; }

Property Value

Type: FuncString, ItemDef
See Also