Get the value
(out byte value)
| 5535 | |
| 5536 | // Get the value |
| 5537 | public override long Get(out byte value) |
| 5538 | { |
| 5539 | if ((_buffer.Offset + FBEOffset + FBESize) > _buffer.Size) |
| 5540 | { |
| 5541 | value = (byte)0; |
| 5542 | return 0; |
| 5543 | } |
| 5544 | |
| 5545 | value = ReadByte(FBEOffset); |
| 5546 | return FBESize; |
| 5547 | } |
| 5548 | |
| 5549 | // Set the value |
| 5550 | public override long Set(byte value) |
nothing calls this directly
no test coverage detected