Class is a helper class used for writing the header and footers for HTML responses
 /// <summary> Add the footer to the output </summary>
 /// <param name="Output"> Stream to which to write the HTML for this footer </param>
 public virtual void Add_Footer(TextWriter Output)
 {
     HeaderFooter_Helper_HtmlSubWriter.Add_Footer(Output, RequestSpecificValues, Subwriter_Behaviors, null, null);
 }
 /// <summary> Add the footer to the output </summary>
 /// <param name="Output"> Stream to which to write the HTML for this footer </param>
 public override void Add_Footer(TextWriter Output)
 {
     HeaderFooter_Helper_HtmlSubWriter.Add_Footer(Output, RequestSpecificValues, Subwriter_Behaviors, hierarchyObject, null);
 }
 /// <summary> Add the header to the output </summary>
 /// <param name="Output"> Stream to which to write the HTML for this header </param>
 public virtual void Add_Header(TextWriter Output)
 {
     HeaderFooter_Helper_HtmlSubWriter.Add_Header(Output, RequestSpecificValues, Container_CssClass, WebPage_Title, Subwriter_Behaviors, null, null);
 }
 /// <summary> Add the header to the output </summary>
 /// <param name="Output"> Stream to which to write the HTML for this header </param>
 public override void Add_Header(TextWriter Output)
 {
     HeaderFooter_Helper_HtmlSubWriter.Add_Header(Output, RequestSpecificValues, Container_CssClass, WebPage_Title, Subwriter_Behaviors, hierarchyObject, null);
 }