示例#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();
 }