Avro.BinaryDecoder.read C# (CSharp) Method

read() private method

private read ( Stream Stream, long p ) : byte[]
Stream Stream
p long
return byte[]
        private byte[] read(Stream Stream, long p)
        {
            byte[] buffer = new byte[p];

            Stream.Read(buffer, 0, (int)p);

            //TODO: This sucks fix it.

            return buffer;
        }

Same methods

BinaryDecoder::read ( Stream Stream ) : byte