4 references to IO_NotSupported_UnwritableStream
System.Formats.Tar (4)
System\Formats\Tar\SubReadStream.cs (1)
176public override void Write(byte[] buffer, int offset, int count) => throw new NotSupportedException(SR.IO_NotSupported_UnwritableStream);
System\Formats\Tar\TarFile.cs (2)
38throw new ArgumentException(SR.IO_NotSupported_UnwritableStream, nameof(destination)); 77return Task.FromException(new ArgumentException(SR.IO_NotSupported_UnwritableStream, nameof(destination)));
System\Formats\Tar\TarWriter.cs (1)
65throw new ArgumentException(SR.IO_NotSupported_UnwritableStream);