Avro.BinaryEncoder.WriteBytes C# (CSharp) Method

WriteBytes() public method

Bytes are encoded as a long followed by that many bytes of data.
public WriteBytes ( Stream Stream, byte value ) : void
Stream Stream
value byte
return void
        public void WriteBytes(Stream Stream, byte[] value)
        {
            WriteLong(Stream, value.Length);
            write(Stream, value);
        }
        /// <summary>