C# Class SobekCM.Library.MainWriters.Html_Echo_MainWriter

HTML echo writer is generally used just for directing search engine robots to pre-existing html pages for indexing items, etc..
This class extends the abstract class abstractMainWriter.
Inheritance: SobekCM.Library.MainWriters.abstractMainWriter
ファイルを表示 Open project: MarkVSullivan/SobekCM-Web-Application

Public Methods

Method Description
Html_Echo_MainWriter ( RequestCache RequestSpecificValues, string HTML_File_To_Echo ) : System.IO

Constructor for a new instance of the Text_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

Write_Within_HTML_Head ( TextWriter Output, Custom_Tracer Tracer ) : void

Writes the style references and other data to the HEAD portion of the web page

Method Details

Html_Echo_MainWriter() public method

Constructor for a new instance of the Text_MainWriter class
public Html_Echo_MainWriter ( RequestCache RequestSpecificValues, string HTML_File_To_Echo ) : System.IO
RequestSpecificValues RequestCache All the necessary, non-global data specific to the current request
HTML_File_To_Echo string The HTML file to echo
return System.IO

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 Custom_Tracer Trace object keeps a list of each method executed and important milestones in rendering
return void

Write_Within_HTML_Head() public method

Writes the style references and other data to the HEAD portion of the web page
public Write_Within_HTML_Head ( TextWriter Output, Custom_Tracer Tracer ) : void
Output System.IO.TextWriter Stream to which to write the text for this main writer
Tracer Custom_Tracer Trace object keeps a list of each method executed and important milestones in rendering
return void