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)
195
get { throw new NotSupportedException(SR.
NotSupported
); }
200
get { throw new NotSupportedException(SR.
NotSupported
); }
201
set { throw new NotSupportedException(SR.
NotSupported
); }
258
throw new NotSupportedException(SR.
NotSupported
);
263
throw new NotSupportedException(SR.
NotSupported
);
System\IO\Compression\GZipStream.cs (5)
55
get { throw new NotSupportedException(SR.
NotSupported
); }
60
get { throw new NotSupportedException(SR.
NotSupported
); }
61
set { throw new NotSupportedException(SR.
NotSupported
); }
72
throw new NotSupportedException(SR.
NotSupported
);
77
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
);