Avro.BinaryEncoder.WriteBytes C# (CSharp) Méthode

WriteBytes() public méthode

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