Manos.Mvc.ViewResult.ViewResult C# (CSharp) Method

ViewResult() public method

public ViewResult ( MvcApp app, Controller controller, string viewname, object model, bool Partial ) : System
app MvcApp
controller Controller
viewname string
model object
Partial bool
return System
        public ViewResult(MvcApp app, Controller controller, string viewname, object model, bool Partial)
        {
            this.app = app;
            this.viewname = viewname;
            this.controller = controller;
            this.model = model;
            this.partial = Partial;
        }