示例#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);
 }
示例#2
0
 public DescribeContext Form(string name, Func <IShapeFactory, dynamic> shape)
 {
     _descriptors[name] = new FormDescriptor {
         Name = name, Shape = shape
     };
     return(this);
 }
示例#3
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;
 }
示例#4
0
 public DescribeContext Form(string name, Func<IShapeFactory, dynamic> shape) {
     _descriptors[name] = new FormDescriptor { Name = name, Shape = shape };
     return this;
 }