BlogSharp.Web.Controllers.PostController.Read C# (CSharp) Méthode

Read() public méthode

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