(ReadContext context)
| 1289 | } |
| 1290 | |
| 1291 | private static byte[] ReadBinary(ReadContext context) |
| 1292 | { |
| 1293 | uint length = context.Reader.ReadVarUInt32(); |
| 1294 | return context.Reader.ReadBytes(checked((int)length)); |
| 1295 | } |
| 1296 | |
| 1297 | private static bool[] ReadBoolArray(ReadContext context) |
| 1298 | { |
nothing calls this directly
no test coverage detected