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