System.ComponentModel.Navigation.Controller.View C# (CSharp) Method

View() protected method

Creates a ViewActionResult that results in the specified view being created.
protected View ( string viewName ) : ViewActionResult
viewName string The name of the view to create.
return ViewActionResult
        protected ViewActionResult View(string viewName)
        {
            return new ViewActionResult(viewName);
        }