uTorrentNotifier.WebUIAPI.WebUIAPI C# (CSharp) 메소드

WebUIAPI() 공개 메소드

public WebUIAPI ( Config config ) : System
config Config
리턴 System
        public WebUIAPI(Config config)
        {
            this.Config         = config;
            this.Torrents       = new TorrentListing();
            this.Timer          = new Timer();
            this.Cookies        = new CookieContainer();

            this.Timer.Tick += new EventHandler(Timer_Tick);
            this.Timer.Interval = 5000;
        }