HtmlTextWriter.EndRender Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Notifies an HtmlTextWriter object, or an object of a derived class, that a control has finished rendering. You can use this method to close any markup elements opened in the BeginRender() method.
public:
virtual void EndRender();
public virtual void EndRender ();
abstract member EndRender : unit -> unit
override this.EndRender : unit -> unit
Public Overridable Sub EndRender ()
Remarks
The HtmlTextWriter class implementation of the EndRender method has no functionality. You must override EndRender in a class derived from the HtmlTextWriter class to provide your own rendering functionality.
You can use the EndRender method to close any markup elements opened in the BeginRender method.