Ejemplo n.º 1
0
 public override IByteBuffer DiscardReadBytes() => throw ThrowHelper.GetReadOnlyBufferException();
Ejemplo n.º 2
0
 public override IByteBuffer AdjustCapacity(int newCapacity) => throw ThrowHelper.GetReadOnlyBufferException();
Ejemplo n.º 3
0
 public override IByteBuffer EnsureWritable(int minWritableBytes) => throw ThrowHelper.GetReadOnlyBufferException();
Ejemplo n.º 4
0
 public override int SetString(int index, string value, Encoding encoding)
 {
     throw ThrowHelper.GetReadOnlyBufferException();
 }
Ejemplo n.º 5
0
 public override IByteBuffer SetZero(int index, int length)
 {
     throw ThrowHelper.GetReadOnlyBufferException();
 }
Ejemplo n.º 6
0
 public override IByteBuffer SetBoolean(int index, bool value)
 {
     throw ThrowHelper.GetReadOnlyBufferException();
 }
Ejemplo n.º 7
0
 public override int SetCharSequence(int index, ICharSequence sequence, Encoding encoding)
 {
     throw ThrowHelper.GetReadOnlyBufferException();
 }
Ejemplo n.º 8
0
 protected internal override void _SetShortLE(int index, int value)
 {
     throw ThrowHelper.GetReadOnlyBufferException();
 }
Ejemplo n.º 9
0
 public override IByteBuffer SetShortLE(int index, int value)
 {
     throw ThrowHelper.GetReadOnlyBufferException();
 }
Ejemplo n.º 10
0
 public override IByteBuffer SetLongLE(int index, long value)
 {
     throw ThrowHelper.GetReadOnlyBufferException();
 }
Ejemplo n.º 11
0
 protected internal override void _SetLong(int index, long value)
 {
     throw ThrowHelper.GetReadOnlyBufferException();
 }
Ejemplo n.º 12
0
 public override Task <int> SetBytesAsync(int index, Stream src, int length, CancellationToken cancellationToken)
 {
     throw ThrowHelper.GetReadOnlyBufferException();
 }