System.IO.BACnet.BacnetClient.ReadFileResponse C# (CSharp) Méthode

ReadFileResponse() public méthode

public ReadFileResponse ( BacnetAddress adr, byte invoke_id, Segmentation segmentation, int position, uint count, bool end_of_file, byte file_buffer ) : void
adr BacnetAddress
invoke_id byte
segmentation Segmentation
position int
count uint
end_of_file bool
file_buffer byte
Résultat void
        public void ReadFileResponse(BacnetAddress adr, byte invoke_id, Segmentation segmentation, int position, uint count, bool end_of_file, byte[] file_buffer)
        {
            SendComplexAck(adr, invoke_id, segmentation, BacnetConfirmedServices.SERVICE_CONFIRMED_ATOMIC_READ_FILE, (b) =>
            {
                Services.EncodeAtomicReadFileAcknowledge(b, true, end_of_file, position, 1, new byte[][] { file_buffer }, new int[] { (int)count });
            });
        }
BacnetClient