Ionic.Zlib.ParallelDeflateOutputStream.Read C# (CSharp) Méthode

Read() public méthode

This method always throws a NotSupportedException.
public Read ( byte buffer, int offset, int count ) : int
buffer byte /// The buffer into which data would be read, IF THIS METHOD /// ACTUALLY DID ANYTHING. ///
offset int /// The offset within that data array at which to insert the /// data that is read, IF THIS METHOD ACTUALLY DID /// ANYTHING. ///
count int /// The number of bytes to write, IF THIS METHOD ACTUALLY DID /// ANYTHING. ///
Résultat int
        public override int Read(byte[] buffer, int offset, int count)
        {
            throw new NotSupportedException();
        }