Esempio n. 1
0
 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);
 }
Esempio n. 2
0
 public DescribeContext Form(string name, Func <IShapeFactory, dynamic> shape)
 {
     _descriptors[name] = new FormDescriptor {
         Name = name, Shape = shape
     };
     return(this);
 }