You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/ICSharpCode.SharpZipLib/Zip/ZipFile.cs
+44-44
Original file line number
Diff line number
Diff line change
@@ -4004,12 +4004,12 @@ public override long Position
4004
4004
/// <returns>
4005
4005
/// The total number of bytes read into the buffer. This can be less than the number of bytes requested if that many bytes are not currently available, or zero (0) if the end of the stream has been reached.
4006
4006
/// </returns>
4007
-
/// <exception cref="T:System.ArgumentException">The sum of offset and count is larger than the buffer length. </exception>
4008
-
/// <exception cref="T:System.ObjectDisposedException">Methods were called after the stream was closed. </exception>
4009
-
/// <exception cref="T:System.NotSupportedException">The stream does not support reading. </exception>
4010
-
/// <exception cref="T:System.ArgumentNullException">buffer is null. </exception>
@@ -4019,13 +4019,13 @@ public override int Read(byte[] buffer, int offset, int count)
4019
4019
/// Sets the position within the current stream.
4020
4020
/// </summary>
4021
4021
/// <param name="offset">A byte offset relative to the origin parameter.</param>
4022
-
/// <param name="origin">A value of type <see cref="T:System.IO.SeekOrigin"></see> indicating the reference point used to obtain the new position.</param>
4022
+
/// <param name="origin">A value of type <see cref="System.IO.SeekOrigin"></see> indicating the reference point used to obtain the new position.</param>
/// <exception cref="T:System.NotSupportedException">The stream does not support seeking, such as if the stream is constructed from a pipe or console output. </exception>
4028
-
/// <exception cref="T:System.ObjectDisposedException">Methods were called after the stream was closed. </exception>
/// <exception cref="System.NotSupportedException">The stream does not support seeking, such as if the stream is constructed from a pipe or console output. </exception>
4028
+
/// <exception cref="System.ObjectDisposedException">Methods were called after the stream was closed. </exception>
@@ -4035,9 +4035,9 @@ public override long Seek(long offset, SeekOrigin origin)
4035
4035
/// Sets the length of the current stream.
4036
4036
/// </summary>
4037
4037
/// <param name="value">The desired length of the current stream in bytes.</param>
4038
-
/// <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>
4038
+
/// <exception cref="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>
@@ -4133,12 +4133,12 @@ public override int ReadByte()
4133
4133
/// <returns>
4134
4134
/// The total number of bytes read into the buffer. This can be less than the number of bytes requested if that many bytes are not currently available, or zero (0) if the end of the stream has been reached.
4135
4135
/// </returns>
4136
-
/// <exception cref="T:System.ArgumentException">The sum of offset and count is larger than the buffer length. </exception>
4137
-
/// <exception cref="T:System.ObjectDisposedException">Methods were called after the stream was closed. </exception>
4138
-
/// <exception cref="T:System.NotSupportedException">The stream does not support reading. </exception>
4139
-
/// <exception cref="T:System.ArgumentNullException">buffer is null. </exception>
@@ -4187,9 +4187,9 @@ public override void Write(byte[] buffer, int offset, int count)
4187
4187
/// When overridden in a derived class, sets the length of the current stream.
4188
4188
/// </summary>
4189
4189
/// <param name="value">The desired length of the current stream in bytes.</param>
4190
-
/// <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>
4190
+
/// <exception cref="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="System.ObjectDisposedException">Methods were called after the stream was closed. </exception>
4193
4193
publicoverridevoidSetLength(longvalue)
4194
4194
{
4195
4195
thrownewNotSupportedException();
@@ -4199,13 +4199,13 @@ public override void SetLength(long value)
4199
4199
/// When overridden in a derived class, sets the position within the current stream.
4200
4200
/// </summary>
4201
4201
/// <param name="offset">A byte offset relative to the origin parameter.</param>
4202
-
/// <param name="origin">A value of type <see cref="T:System.IO.SeekOrigin"></see> indicating the reference point used to obtain the new position.</param>
4202
+
/// <param name="origin">A value of type <see cref="System.IO.SeekOrigin"></see> indicating the reference point used to obtain the new position.</param>
/// <exception cref="T:System.NotSupportedException">The stream does not support seeking, such as if the stream is constructed from a pipe or console output. </exception>
4208
-
/// <exception cref="T:System.ObjectDisposedException">Methods were called after the stream was closed. </exception>
/// <exception cref="System.NotSupportedException">The stream does not support seeking, such as if the stream is constructed from a pipe or console output. </exception>
4208
+
/// <exception cref="System.ObjectDisposedException">Methods were called after the stream was closed. </exception>
0 commit comments