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

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

public Live ( string hashTag ) : System.Web.Mvc.ActionResult
hashTag string
Результат System.Web.Mvc.ActionResult
        public ActionResult Live(string hashTag)
        {
            var conference = YouConfDbContext.Conferences
                .FirstOrDefault(x => x.HashTag == hashTag);

            if (conference == null)
            {
                return HttpNotFound();
            }
            return View(conference);
        }