コード例 #1
0
ファイル: PluginController.cs プロジェクト: lolegg/Cupcake
        public ActionResult Index()
        {
            PluginFinder pf   = new PluginFinder();
            var          list = pf.GetPluginDescriptors(LoadPluginsMode.All);

            ViewBag.Pager = new Paging()
            {
                PageIndex = 1, PageSize = 10
            };
            return(View(list));
        }