Esempio n. 1
0
 /// <summary>
 /// Sets the length of the stream
 /// </summary>
 /// <param name="Value">new length of the stream</param>
 public override void SetLength(long Value)
 {
     if (fileStream == null)
     {
         throw new ObjectDisposedException("fileStream", "storage stream no longer available");
     }
     fileStream.SetSize(Value);
 }
Esempio n. 2
0
 public override void SetLength(long value)
 {
     _stm.SetSize(value);
 }
Esempio n. 3
0
 public override void SetLength(long value)
 {
     _baseStream.SetSize(value);
 }