YouConf.Controllers.ConferenceController.Delete C# (CSharp) Метод

Delete() приватный Метод

private Delete ( string hashTag ) : System.Web.Mvc.ActionResult
hashTag string
Результат System.Web.Mvc.ActionResult
        public ActionResult Delete(string hashTag)
        {
            var conference = YouConfDbContext.Conferences
                .FirstOrDefault(x => x.HashTag == hashTag);
            if (conference == null)
            {
                return HttpNotFound();
            }

            return View(conference);
        }