Beispiel #1
0
 /// <summary>
 /// Retrieve a file inside a database returning a FileDBStream to read
 /// </summary>
 /// <param name="id">A Guid that references to file</param>
 /// <returns>A FileDBStream ready to be readed or null if ID was not found</returns>
 public FileDBStream OpenRead(Guid id)
 {
     return(_engine.OpenRead(id));
 }