BB.UI.Web.MVC.Controllers.OrganisationsController.SearchPlaylist C# (CSharp) 메소드

SearchPlaylist() 공개 메소드

public SearchPlaylist ( string q ) : System.Web.Mvc.JsonResult
q string
리턴 System.Web.Mvc.JsonResult
        public JsonResult SearchPlaylist(string q)
        {
            var youtubeProvider = new YouTubeTrackProvider();
            var searchResult = youtubeProvider.SearchPlaylist(q);

            return Json(searchResult, JsonRequestBehavior.AllowGet);
        }