public override IByteBuffer DiscardReadBytes() => throw ThrowHelper.GetReadOnlyBufferException();
public override IByteBuffer AdjustCapacity(int newCapacity) => throw ThrowHelper.GetReadOnlyBufferException();
public override IByteBuffer EnsureWritable(int minWritableBytes) => throw ThrowHelper.GetReadOnlyBufferException();
public override int SetString(int index, string value, Encoding encoding) { throw ThrowHelper.GetReadOnlyBufferException(); }
public override IByteBuffer SetZero(int index, int length) { throw ThrowHelper.GetReadOnlyBufferException(); }
public override IByteBuffer SetBoolean(int index, bool value) { throw ThrowHelper.GetReadOnlyBufferException(); }
public override int SetCharSequence(int index, ICharSequence sequence, Encoding encoding) { throw ThrowHelper.GetReadOnlyBufferException(); }
protected internal override void _SetShortLE(int index, int value) { throw ThrowHelper.GetReadOnlyBufferException(); }
public override IByteBuffer SetShortLE(int index, int value) { throw ThrowHelper.GetReadOnlyBufferException(); }
public override IByteBuffer SetLongLE(int index, long value) { throw ThrowHelper.GetReadOnlyBufferException(); }
protected internal override void _SetLong(int index, long value) { throw ThrowHelper.GetReadOnlyBufferException(); }
public override Task <int> SetBytesAsync(int index, Stream src, int length, CancellationToken cancellationToken) { throw ThrowHelper.GetReadOnlyBufferException(); }