12 references to ReadByte
PresentationCore (12)
Core\CSharp\MS\Internal\Ink\InkSerializedFormat\GorillaCodec.cs (1)
500return (int)reader.ReadByte(Native.BitsPerByte);
Core\CSharp\MS\Internal\Ink\InkSerializedFormat\LZCodec.cs (3)
67byte1 = reader.ReadByte(Native.BitsPerByte); 76byte1 = reader.ReadByte(Native.BitsPerByte); 90byte2 = reader.ReadByte(Native.BitsPerByte);
Core\CSharp\MS\Internal\Ink\InkSerializedFormat\StrokeSerializer.cs (2)
542buttonData[byteCounter++] = bitReader.ReadByte(Native.BitsPerByte); 547buttonData[byteCounter++] = bitReader.ReadByte((int)partialBitsForButtonsPerPacket);
Shared\MS\Internal\Ink\BitStream.cs (6)
91byte b = ReadByte(countToRead); 121byte b = ReadByte(countToRead); 149ushort b = (ushort)ReadByte(countToRead); 179byte b = ReadByte(countToRead); 207uint b = (uint)ReadByte(countToRead); 222byte b = ReadByte(1);