The SMB2 READ Response packet is sent in response to an SMB2 READ Request packet. This response is composed of an SMB2 header, as specified in section , followed by this response structure:
 public uint Smb2ReadOverRdmaChannel(
     UInt64 offset,
     uint byteCount,
     byte[] channelBuffer,
     out READ_Response readResponse,
     out byte[] readData,
     Channel_Values channel = Channel_Values.CHANNEL_RDMA_V1)
 {
     return client.Smb2ReadOverRdmaChannel(
         offset,
         byteCount,
         channelBuffer,
         out readResponse,
         out readData,
         channel);
 }
 public uint Smb2Read(UInt64 offset, uint byteCount, out byte[] readData, out READ_Response readResponse)
 {
     return client.Smb2Read(offset, byteCount, out readData, out readResponse);
 }