public SpotifyLocalAPI() { _rh = new RemoteHandler(); _eventTimer = new Timer { Interval = 50, AutoReset = false, Enabled = false }; _eventTimer.Elapsed += ElapsedTick; }
public SpotifyLocalAPI(SpotifyLocalAPIConfig config) { _rh = new RemoteHandler(config); AttachTimer(config.TimerInterval); }
public SpotifyLocalAPI(int timerIntervall = 50) { _rh = new RemoteHandler(new SpotifyLocalAPIConfig()); AttachTimer(timerIntervall); }
public SpotifyLocalAPI(int timerIntervall = 50) { _rh = new RemoteHandler(); AttachTimer(timerIntervall); }