ReadByte
abstract
public abstract byte ReadByte() Reads a byte from the input.
Returns
The byte which was read.
public abstract byte ReadByte()public abstract void ReadBytes(Span<byte> destination)destinationSpan<byte>public abstract void ReadBytes(byte[] destination, int offset, int length)destinationbyte[]offsetintlengthintpublic abstract uint ReadUInt32()System.UInt32 from the input. System.UInt32 which was read.public abstract ulong ReadUInt64()System.UInt64 from the input. System.UInt64 which was read.public abstract void Seek(long position)positionlongpublic abstract void Skip(long count)countlongpublic abstract bool TryReadBytes(int length, out ReadOnlySpan<byte> bytes)lengthintbytesReadOnlySpan<byte>true if the number of bytes were successfully read, false otherwise.