HtmlTextWriter.EndRender Method

Definition

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.

Applies to

See also