Ejemplo n.º 1
0
 public VirtualFileStream(string encryptedVideoFilePath)
 {
     this._lock  = new object();
     this._cache = new VirtualFileCache(encryptedVideoFilePath);
 }
Ejemplo n.º 2
0
 private VirtualFileStream(VirtualFileCache cache)
 {
     this._lock  = new object();
     this._cache = cache;
 }