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