C# 클래스 Sage.Views.Meta.MetaView

Provides a meta view of the actual view selected and executed for a controller.
상속: IView
파일 보기 프로젝트 열기: igorfrance/sage

공개 메소드들

메소드 설명
Create ( MetaViewInfo viewInfo, IView wrapped ) : MetaView

Creates MetaView instances.

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

Renders the specified view context by using the specified the writer object.

보호된 메소드들

메소드 설명
DisableCaching ( System.Web.Mvc.ViewContext viewContext ) : void

Disables the caching.

MetaView ( MetaViewInfo viewInfo, IView wrapped ) : System

Initializes a new instance of the MetaView class.

메소드 상세

Create() 공개 정적인 메소드

Creates MetaView instances.
public static Create ( MetaViewInfo viewInfo, IView wrapped ) : MetaView
viewInfo Sage.Configuration.MetaViewInfo The object that defines the meta view to create.
wrapped IView The view that the meta view inspects.
리턴 MetaView

DisableCaching() 보호된 메소드

Disables the caching.
protected DisableCaching ( System.Web.Mvc.ViewContext viewContext ) : void
viewContext System.Web.Mvc.ViewContext The view context.
리턴 void

MetaView() 보호된 메소드

Initializes a new instance of the MetaView class.
protected MetaView ( MetaViewInfo viewInfo, IView wrapped ) : System
viewInfo Sage.Configuration.MetaViewInfo The view info.
wrapped IView The wrapped.
리턴 System

Render() 공개 메소드

Renders the specified view context by using the specified the writer object.
public Render ( System.Web.Mvc.ViewContext viewContext, TextWriter writer ) : void
viewContext System.Web.Mvc.ViewContext The view context.
writer System.IO.TextWriter The writer object.
리턴 void