C# Class System.Web.WebPages.WebPageExecutingBase

Show file Open project: drivenet/aspnetwebstack Class Usage Examples

Private Properties

Property Type Description
Execute void
GetDirectory string
GetOutputWriter TextWriter
WriteLiteralTo void
WriteTo void

Public Methods

Method Description
Href ( string path ) : string
NormalizePath ( string path ) : string
Write ( HelperResult result ) : void
Write ( object value ) : void
WriteAttribute ( string name, string prefix, string suffix ) : void
WriteLiteral ( object value ) : void
WriteLiteralTo ( TextWriter writer, object content ) : void
WriteTo ( TextWriter writer, HelperResult content ) : void
WriteTo ( TextWriter writer, object content ) : void

Protected Methods

Method Description
NormalizeLayoutPagePath ( string layoutPagePath ) : string

Normalizes path relative to the current virtual path and throws if a file does not exist at the location.

WriteAttributeTo ( TextWriter writer, string name, string prefix, string suffix ) : void

Private Methods

Method Description
Execute ( ) : void
GetDirectory ( string virtualPath ) : string
GetOutputWriter ( ) : TextWriter
WriteLiteralTo ( TextWriter writer, string content ) : void
WriteTo ( TextWriter writer, string content ) : void

Method Details

Href() public method

public Href ( string path ) : string
path string
return string

NormalizeLayoutPagePath() protected method

Normalizes path relative to the current virtual path and throws if a file does not exist at the location.
protected NormalizeLayoutPagePath ( string layoutPagePath ) : string
layoutPagePath string
return string

NormalizePath() public method

public NormalizePath ( string path ) : string
path string
return string

Write() public abstract method

public abstract Write ( HelperResult result ) : void
result HelperResult
return void

Write() public abstract method

public abstract Write ( object value ) : void
value object
return void

WriteAttribute() public method

public WriteAttribute ( string name, string prefix, string suffix ) : void
name string
prefix string
suffix string
return void

WriteAttributeTo() protected method

protected WriteAttributeTo ( TextWriter writer, string name, string prefix, string suffix ) : void
writer TextWriter
name string
prefix string
suffix string
return void

WriteLiteral() public abstract method

public abstract WriteLiteral ( object value ) : void
value object
return void

WriteLiteralTo() public static method

public static WriteLiteralTo ( TextWriter writer, object content ) : void
writer TextWriter
content object
return void

WriteTo() public static method

public static WriteTo ( TextWriter writer, HelperResult content ) : void
writer TextWriter
content HelperResult
return void

WriteTo() public static method

public static WriteTo ( TextWriter writer, object content ) : void
writer TextWriter
content object
return void