4 references to IO_NotSupported_UnseekableStream
System.Formats.Tar (4)
System\Formats\Tar\SeekableSubReadStream.cs (1)
21throw new ArgumentException(SR.IO_NotSupported_UnseekableStream, nameof(superStream));
System\Formats\Tar\SubReadStream.cs (3)
57throw new InvalidOperationException(SR.IO_NotSupported_UnseekableStream); 172public override long Seek(long offset, SeekOrigin origin) => throw new NotSupportedException(SR.IO_NotSupported_UnseekableStream); 174public override void SetLength(long value) => throw new NotSupportedException(SR.IO_NotSupported_UnseekableStream);