public KodiPlayerStop(Int32 PlayerId) { this.jsonrpc = "2.0"; this.method = "Player.Stop"; this._params = new KodiPlayerIdParams(); this._params.playerid = PlayerId; }
public KodiPlayPauseRequest(Int32 PlayerId) { this.jsonrpc = "2.0"; this.method = "Player.PlayPause"; this._params = new KodiPlayerIdParams(); this._params.playerid = PlayerId; }