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