BlogSharp.Web.Controllers.PostController.Read C# (CSharp) Method

Read() public method

public Read ( string friendlyTitle ) : System.Web.Mvc.ActionResult
friendlyTitle string
return System.Web.Mvc.ActionResult
        public ActionResult Read(string friendlyTitle)
        {
            var post = postService.GetPostByFriendlyTitle(CurrentBlog, friendlyTitle);
            return View(post);
        }