Esempio n. 1
0
 /// <summary>
 /// Flushes the stream
 /// </summary>
 public override void Flush()
 {
     if (fileStream == null)
     {
         throw new ObjectDisposedException("fileStream", "storage stream no longer available");
     }
     fileStream.Commit(0);
 }
Esempio n. 2
0
 public override void Flush()
 {
     _stm.Commit(0);
 }
Esempio n. 3
0
 public override void Flush()
 {
     source.Commit(0);
 }
Esempio n. 4
0
 public override void Flush()
 {
     _baseStream.Commit((int)STGC.STGC_DEFAULT);
 }