示例#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);
 }
示例#2
0
 public override void Flush()
 {
     _stm.Commit(0);
 }
 public override void Flush()
 {
     source.Commit(0);
 }
示例#4
0
 public override void Flush()
 {
     _baseStream.Commit((int)STGC.STGC_DEFAULT);
 }