Execute() публичный Метод

Execute the template transformation with the given parameters
public Execute ( String itemUri, String templateUri, String publicationTargetUri = null ) : String
itemUri String Tridion item URI.
templateUri String Tridion template URI.
publicationTargetUri String Tridion publication target URI.
Результат String
        private ActionResult GetView(string itemUri, string templateUri, string path)
        {
            using (new PreviewServer())
            {
                DebugEngine engine = new DebugEngine();
                string output = engine.Execute(itemUri, templateUri);
                //now Engine and Template instances are created

                return View(path);
            }
        }