Manos.Mvc.StartView.Execute C# (CSharp) Method

Execute() private method

private Execute ( View RootView ) : void
RootView View
return void
        internal void Execute(View RootView)
        {
            // Setup self
            this.RootView = RootView;
            this.Context = RootView.Context;
            this.Html = RootView.Html;
            this.Output = RootView.Output;

            // Run the template
            OnExecute();

            this.Output = null;
        }