Inheritance diagram for Anthem.Debugger:
Public Member Functions | |
override void | RenderControl (HtmlTextWriter writer) |
Forces the server control to output content and trace information. | |
Protected Member Functions | |
override void | CreateChildControls () |
override void | OnLoad (EventArgs e) |
Raises the System.Web.UI.Control.Load event and registers the control with Anthem.Manager. | |
override void | OnPreRender (EventArgs e) |
override void | Render (HtmlTextWriter writer) |
Renders the server control wrapped in an additional element so that the element.innerHTML can be updated after a callback. | |
Properties | |
bool | DebugRequestText [get, set] |
bool | DebugResponseText [get, set] |
bool | DebugErrors [get, set] |
override bool | Visible [get, set] |
Overrides the Visible property so that Anthem.Manager can track the visibility. | |
[DefaultValue(false)] virtual bool | AutoUpdateAfterCallBack [get, set] |
Gets or sets a value indicating whether the control should be updated after each callback. Also see UpdateAfterCallBack. | |
[Browsable(false), DefaultValue(false)] virtual bool | UpdateAfterCallBack [get, set] |
Gets or sets a value which indicates whether the control should be updated after the current callback. Also see AutoUpdateAfterCallBack. | |
[DefaultValue(true)] virtual bool | EnableCallBack [get, set] |
Gets or sets a value indicating whether the control uses callbacks instead of postbacks to post data to the server. |
Definition at line 12 of file Debugger.cs.
override void Anthem.Debugger.CreateChildControls | ( | ) | [protected] |
Definition at line 15 of file Debugger.cs.
override void Anthem.Debugger.OnLoad | ( | EventArgs | e | ) | [protected] |
Raises the System.Web.UI.Control.Load event and registers the control with Anthem.Manager.
e | A System.EventArgs. |
Definition at line 38 of file Debugger.cs.
override void Anthem.Debugger.OnPreRender | ( | EventArgs | e | ) | [protected] |
Definition at line 67 of file Debugger.cs.
override void Anthem.Debugger.Render | ( | HtmlTextWriter | writer | ) | [protected] |
Renders the server control wrapped in an additional element so that the element.innerHTML can be updated after a callback.
Definition at line 126 of file Debugger.cs.
override void Anthem.Debugger.RenderControl | ( | HtmlTextWriter | writer | ) |
Forces the server control to output content and trace information.
Definition at line 211 of file Debugger.cs.
bool Anthem.Debugger.DebugRequestText [get, set] |
Definition at line 138 of file Debugger.cs.
Referenced by Anthem.Debugger.OnLoad(), Anthem.Debugger.OnPreRender(), and Anthem.Debugger.Render().
bool Anthem.Debugger.DebugResponseText [get, set] |
Definition at line 161 of file Debugger.cs.
Referenced by Anthem.Debugger.OnLoad(), and Anthem.Debugger.OnPreRender().
bool Anthem.Debugger.DebugErrors [get, set] |
Definition at line 184 of file Debugger.cs.
Referenced by Anthem.Debugger.OnLoad(), and Anthem.Debugger.OnPreRender().
override bool Anthem.Debugger.Visible [get, set] |
Overrides the Visible property so that Anthem.Manager can track the visibility.
true if the control is rendered on the client; otherwise false. The default is true.
Definition at line 226 of file Debugger.cs.
[DefaultValue(false)] virtual bool Anthem.Debugger.AutoUpdateAfterCallBack [get, set] |
Gets or sets a value indicating whether the control should be updated after each callback. Also see UpdateAfterCallBack.
true if the the control should be updated; otherwise, false. The default is false.
<anthem:Label id="label" runat="server" AutoUpdateAfterCallBack="true" />
Implements Anthem.IUpdatableControl.
Definition at line 254 of file Debugger.cs.
[Browsable(false), DefaultValue(false)] virtual bool Anthem.Debugger.UpdateAfterCallBack [get, set] |
Gets or sets a value which indicates whether the control should be updated after the current callback. Also see AutoUpdateAfterCallBack.
true if the the control should be updated; otherwise, false. The default is false.
this.Label = "Count = " + count; this.Label.UpdateAfterCallBack = true;
Implements Anthem.IUpdatableControl.
Definition at line 285 of file Debugger.cs.
[DefaultValue(true)] virtual bool Anthem.Debugger.EnableCallBack [get, set] |
Gets or sets a value indicating whether the control uses callbacks instead of postbacks to post data to the server.
true if the the control uses callbacks; otherwise, false. The default is true.
Definition at line 299 of file Debugger.cs.