(ReadContext context)
| 260 | } |
| 261 | |
| 262 | public override byte[] ReadData(ReadContext context) |
| 263 | { |
| 264 | uint length = context.Reader.ReadVarUInt32(); |
| 265 | return context.Reader.ReadBytes(checked((int)length)); |
| 266 | } |
| 267 | } |
nothing calls this directly
no test coverage detected