Example #1
0
 public Connection()
 {
     Addons       = new Addons(this);
     Application  = new Application(this);
     AudioLibrary = new AudioLibrary(this);
     Files        = new Files(this);
     Gui          = new Gui(this);
     Input        = new Input(this);
     JsonRpc      = new JsonRpc(this);
     Player       = new Player(this);
     Playlist     = new Playlist(this);
     Pvr          = new Pvr(this);
     System       = new Commands.System(this);
     VideoLibrary = new VideoLibrary(this);
     Xbmc         = new Commands.Xbmc(this);
 }
Example #2
0
 public void LoadPvrFromMemoryTest()
 {
     _pvr = Pvr.LoadFromBytes(
         File.ReadAllBytes(TestPvrPath)
         );
 }
Example #3
0
 public void LoadPvrFromFileTest()
 {
     _pvr = Pvr.LoadFromFile(TestPvrPath);
 }