예제 #1
0
 /// <summary>
 /// Get base stream but with altered filePath
 /// </summary>
 protected FileStream GetStream(string filePath)
 {
     return(_stream.GetStream(GetNextpath(filePath)));
 }
예제 #2
0
 /// <summary>
 /// Wrap the base stream in an imaginary crypto class
 /// </summary>
 protected FileStream GetStream(string filePath)
 {
     return(new CImaginaryCryptoStream(_stream.GetStream(filePath), _key));
 }