C# Class Sage.Views.Meta.RetransformView

Provides an additional transform of the original view result.
Inheritance: MetaView
Show file Open project: igorfrance/sage

Public Methods

Method Description
Render ( System.Web.Mvc.ViewContext viewContext, TextWriter writer ) : void

Renders the result of the original view with an additional XsltTransform.

RetransformView ( MetaViewInfo viewInfo, IView wrapped ) : System

Initializes a new instance of the RetransformView class.

Method Details

Render() public method

Renders the result of the original view with an additional XsltTransform.
public Render ( System.Web.Mvc.ViewContext viewContext, TextWriter writer ) : void
viewContext System.Web.Mvc.ViewContext The view context.
writer System.IO.TextWriter The writer to write to.
return void

RetransformView() public method

Initializes a new instance of the RetransformView class.
public RetransformView ( MetaViewInfo viewInfo, IView wrapped ) : System
viewInfo Sage.Configuration.MetaViewInfo The object that contains definition of this meta view.
wrapped IView The wrapped original view.
return System