Esempio n. 1
0
 /// <summary>
 ///     When overridden in a derived class, sets the length of the current stream.
 /// </summary>
 /// <param name="value">The desired length of the current stream in bytes.</param>
 /// <exception cref="T:System.IO.IOException">
 ///     An I/O error occurs.
 /// </exception>
 /// <exception cref="T:System.NotSupportedException">
 ///     The stream does not support both writing and seeking, such as if the stream is constructed from a pipe or console
 ///     output.
 /// </exception>
 /// <exception cref="T:System.ObjectDisposedException">
 ///     Methods were called after the stream was closed.
 /// </exception>
 public override void SetLength(long value)
 {
     _Stream.SetSize(value);
 }