22 references to NotSupported
System.IO.Compression (22)
System\IO\Compression\DeflateManaged\DeflateManagedStream.cs (5)
63
get { throw new NotSupportedException(SR.
NotSupported
); }
68
get { throw new NotSupportedException(SR.
NotSupported
); }
69
set { throw new NotSupportedException(SR.
NotSupported
); }
87
throw new NotSupportedException(SR.
NotSupported
);
92
throw new NotSupportedException(SR.
NotSupported
);
System\IO\Compression\DeflateZLib\DeflateStream.cs (5)
201
get { throw new NotSupportedException(SR.
NotSupported
); }
206
get { throw new NotSupportedException(SR.
NotSupported
); }
207
set { throw new NotSupportedException(SR.
NotSupported
); }
264
throw new NotSupportedException(SR.
NotSupported
);
269
throw new NotSupportedException(SR.
NotSupported
);
System\IO\Compression\GZipStream.cs (5)
60
get { throw new NotSupportedException(SR.
NotSupported
); }
65
get { throw new NotSupportedException(SR.
NotSupported
); }
66
set { throw new NotSupportedException(SR.
NotSupported
); }
77
throw new NotSupportedException(SR.
NotSupported
);
82
throw new NotSupportedException(SR.
NotSupported
);
System\IO\Compression\PositionPreservingWriteOnlyStreamWrapper.cs (7)
30
set { throw new NotSupportedException(SR.
NotSupported
); }
100
get { throw new NotSupportedException(SR.
NotSupported
); }
105
throw new NotSupportedException(SR.
NotSupported
);
110
throw new NotSupportedException(SR.
NotSupported
);
113
public override int Read(byte[] buffer, int offset, int count) => throw new NotSupportedException(SR.
NotSupported
);
115
public override Task<int> ReadAsync(byte[] buffer, int offset, int count, CancellationToken cancellationToken) => throw new NotSupportedException(SR.
NotSupported
);
117
public override ValueTask<int> ReadAsync(Memory<byte> buffer, CancellationToken cancellationToken = default) => throw new NotSupportedException(SR.
NotSupported
);