OSAE.XBMC.XBMCSystem.getStatus C# (CSharp) Method

getStatus() public method

public getStatus ( ) : void
return void
        public async void getStatus()
            {
            var players = await _xbmcSystem.Player.GetActivePlayers();
            int c = players.Count();

            if (c > 0)
                _playing = true;
            else
                _playing = false;

            if (_Debug) Log.Debug(" --- " + _playing.ToString());
        }