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