Example #1
0
        static void Main(string[] args)
        {
            Server = BaseAPI.Get("qqk7ez");
            if (Server.IsOnline())
            {
                var AllData = Server.Data;
            }

            // With Timer
            Timer t = new Timer(TimerRes, null, 0, 5000);

            Console.ReadLine();
        }
 public ActionResult Get(string RepositoryName, string Username)
 {
     Core.Models.Repository repo = BaseAPI.Get(Username, RepositoryName);
     return(View(GetBaseView(repo)));
 }