AspNet.Portal.Mobile.Controllers.ReadabilityController.Index C# (CSharp) Метод

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

public Index ( string url ) : System.Web.Mvc.ActionResult
url string
Результат System.Web.Mvc.ActionResult
        public ActionResult Index(string url)
        {
            var readablePage = new ReadabilityAdapter().GetContent(url);

            ViewBag.Url = url;
            ViewBag.Content = readablePage;
            ViewBag.TweetUrl = string.Format("https://twitter.com/intent/tweet?url={0}", ViewBag.Url);

            return View();
        }
    }
ReadabilityController