C# Class SobekCM.Library.MainWriters.DataProvider_MainWriter

Main writer provides datatables as JSON to drive anything which requires server-side paging or sorting of a large amount of data.
This class extends the abstract class abstractMainWriter.
Inheritance: SobekCM.Library.MainWriters.abstractMainWriter
ファイルを表示 Open project: MarkVSullivan/SobekCM-Web-Application

Public Methods

Method Description
DataProvider_MainWriter ( RequestCache RequestSpecificValues ) : System

Constructor for a new instance of the DataProvider_MainWriter class

Write_Html ( TextWriter Output, Custom_Tracer Tracer ) : void

Perform all the work of adding text directly to the response stream back to the web user

Private Methods

Method Description
provide_dataset_items_view_data ( TextWriter Output ) : void

Method Details

DataProvider_MainWriter() public method

Constructor for a new instance of the DataProvider_MainWriter class
public DataProvider_MainWriter ( RequestCache RequestSpecificValues ) : System
RequestSpecificValues RequestCache All the necessary, non-global data specific to the current request
return System

Write_Html() public method

Perform all the work of adding text directly to the response stream back to the web user
public Write_Html ( TextWriter Output, Custom_Tracer Tracer ) : void
Output System.IO.TextWriter Stream to which to write the text for this main writer
Tracer SobekCM.Tools.Custom_Tracer Trace object keeps a list of each method executed and important milestones in rendering
return void