The SMB2 WRITE Response packet is sent by the server to write data to the file or named pipe on the server. This response is composed of an SMB2 header, as specified in section , followed by this response structure:
 public uint Smb2WriteOverRdmaChannel(
     UInt64 offset,
     byte[] channelInfo,
     uint length,
     out WRITE_Response writeResponse,
     Channel_Values channel = Channel_Values.CHANNEL_RDMA_V1)
 {
     return client.Smb2WriteOverRdmaChannel(
         offset,
         channelInfo,
         length,
         out writeResponse,
         channel);
 }
 public uint Smb2Write(UInt64 offset, byte[] writeData, out WRITE_Response writeResponse)
 {
     return client.Smb2Write(offset, writeData, out writeResponse);
 }