public VirtualFileStream(string EncryptedVideoFilePath)
 {
     this._Lock  = new object();
     this._Cache = new VirtualFileCache(EncryptedVideoFilePath);
 }
 private VirtualFileStream(VirtualFileCache Cache)
 {
     this._Lock  = new object();
     this._Cache = Cache;
 }