public DescribeContext Form(string name, Func <IShapeFactory, dynamic> shape, Action <dynamic, ImportContentContext> importing, Action <dynamic, ExportContentContext> exporting) { _descriptors[name] = new FormDescriptor { Name = name, Shape = shape, Import = importing, Export = exporting }; return(this); }
public DescribeContext Form(string name, Func <IShapeFactory, dynamic> shape) { _descriptors[name] = new FormDescriptor { Name = name, Shape = shape }; return(this); }