public void Dispose()
 {
     if (_stream != null)
     {
         _stream.Dispose();
         _stream = null;
     }
 }
 public StreamingService()
 {
     _stream = new Streaming(this);
 }
 public StreamingService()
 {
     _stream = new Streaming(this);
     _downloads = new Downloads();
 }