MySql.Data.MySqlClient.MySqlPacket.Read C# (CSharp) Метод

Read() публичный Метод

public Read ( byte byteBuffer, int offset, int count ) : int
byteBuffer byte
offset int
count int
Результат int
    public int Read(byte[] byteBuffer, int offset, int count)
    {
      return buffer.Read(byteBuffer, offset, count);
    }

Usage Example

Пример #1
0
 private void ReadNullMap(int fieldCount)
 {
     // if we are binary, then we need to load in our null bitmap
     nullMap = null;
     byte[] nullMapBytes = new byte[(fieldCount + 9) / 8];
     packet.ReadByte();
     packet.Read(nullMapBytes, 0, nullMapBytes.Length);
     nullMap = new BitArray(nullMapBytes);
 }
All Usage Examples Of MySql.Data.MySqlClient.MySqlPacket::Read