public JsonObjectPageMaker(string modelName, WriteSettings settings)
 {
     Add(PageMakerUtil.IsType(SourceOutputType.ToolkitObject),
         new InternalJsonObjectPageMaker(modelName, settings));
     Add(PageMakerUtil.IsType(SourceOutputType.String),
         new SourceOutputPageMaker(ContentTypeConst.JSON));
 }
Beispiel #2
0
 public JsonPageMaker()
 {
     Add(PageMakerUtil.IsType(SourceOutputType.XmlReader, SourceOutputType.DataSet),
         JsonDataSetXmlReaderPageMaker.PageMaker);
     Add(PageMakerUtil.IsType(SourceOutputType.ToolkitObject),
         new InternalJsonObjectPageMaker(null, null));
     Add(PageMakerUtil.IsType(SourceOutputType.String),
         new SourceOutputPageMaker(ContentTypeConst.JSON));
 }
Beispiel #3
0
 public XmlPageMaker(WriteSettings settings, QName root)
 {
     Add(PageMakerUtil.IsType(SourceOutputType.XmlReader, SourceOutputType.DataSet),
         XmlReaderPageMaker.PageMaker);
     Add(PageMakerUtil.IsType(SourceOutputType.ToolkitObject),
         new XmlObjectPageMaker(settings, root));
     Add(PageMakerUtil.IsType(SourceOutputType.String),
         new SourceOutputPageMaker(ContentTypeConst.XML));
 }
Beispiel #4
0
 public JsonpDataSetPageMaker()
 {
     Add(PageMakerUtil.IsType(SourceOutputType.XmlReader, SourceOutputType.DataSet),
         JsonDataSetXmlReaderPageMaker.PageMaker);
     Add(PageMakerUtil.IsType(SourceOutputType.String), JsonDataSetTextPageMaker.PageMaker);
 }
Beispiel #5
0
 private JsonResultPageMaker()
 {
     fChild = new JsonDataSetResultPageMaker();
     Add(PageMakerUtil.IsType(SourceOutputType.XmlReader, SourceOutputType.DataSet), fChild);
 }