Add_Footer() public static method

Add the header to the output
public static Add_Footer ( TextWriter Output, RequestCache RequestSpecificValues, List Behaviors, Item_Aggregation Current_Aggregation, BriefItemInfo Current_Item ) : void
Output System.IO.TextWriter Stream to which to write the HTML for this header
RequestSpecificValues RequestCache All the necessary, non-global data specific to the current request
Behaviors List List of behaviors from the html subwriters
Current_Aggregation SobekCM.Core.Aggregations.Item_Aggregation Current aggregation object, if there is one
Current_Item SobekCM.Core.BriefItem.BriefItemInfo Current item object, if there is one
return void
 /// <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);
 }