Add_Header() 공개 정적인 메소드

Add the header to the output
public static Add_Header ( TextWriter Output, RequestCache RequestSpecificValues, string Container_CssClass, string Web_Page_Title, 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
Container_CssClass string Class name for the container around the page
Web_Page_Title string Title for this web page, to include behind the banner possibly
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
리턴 void
 /// <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);
 }