WebPageExecutingBase Class

Definition

Provides objects and methods that are used to execute and render ASP.NET pages that include Razor syntax.

public abstract class WebPageExecutingBase
type WebPageExecutingBase = class
Public MustInherit Class WebPageExecutingBase
Inheritance
WebPageExecutingBase
Derived

Constructors

WebPageExecutingBase()

Initializes a new instance of the WebPageExecutingBase class. This constructor can only be called by an inherited class.

Properties

App
AppState
Context

When overridden in a derived class, gets or sets the HttpContextBase object that is associated with a page.

VirtualPath
VirtualPathFactory

Methods

BeginContext(Int32, Int32, Boolean)
BeginContext(String, Int32, Int32, Boolean)
BeginContext(TextWriter, Int32, Int32, Boolean)
BeginContext(TextWriter, String, Int32, Int32, Boolean)
EndContext(Int32, Int32, Boolean)
EndContext(String, Int32, Int32, Boolean)
EndContext(TextWriter, Int32, Int32, Boolean)
EndContext(TextWriter, String, Int32, Int32, Boolean)
Execute()
GetOutputWriter()

Returns the text writer instance that is used to render the page.

Href(String, Object[])
NormalizeLayoutPagePath(String)
NormalizePath(String)
Write(HelperResult)

Writes the specified HelperResult object as an HTML-encoded string.

Write(Object)

Writes the string representation of the specified object as an HTML-encoded string.

WriteAttribute(String, PositionTagged<String>, PositionTagged<String>, AttributeValue[])
WriteAttributeTo(String, TextWriter, String, PositionTagged<String>, PositionTagged<String>, AttributeValue[])
WriteAttributeTo(TextWriter, String, PositionTagged<String>, PositionTagged<String>, AttributeValue[])
WriteLiteral(Object)

Writes the specified object without HTML encoding.

WriteLiteralTo(TextWriter, Object)

Writes the specified object to the specified TextWriter instance without HTML encoding.

WriteTo(TextWriter, HelperResult)

Writes the specified HelperResult object as an HTML-encoded string to the specified text writer.

WriteTo(TextWriter, Object)

Writes the specified object as an HTML-encoded string to the specified text writer.

Applies to