ela-compil / BACnet

BACnet protocol library for .NET :satellite:
https://www.nuget.org/packages/bacnet/
MIT License
215 stars 95 forks source link

Failed to read property PROP_OBJECT_LIST #141

Open chenjing1294 opened 1 month ago

chenjing1294 commented 1 month ago

In ObjectBrowseSample, if the latest BACnet library is used, the following call will fail

var objectIdList = await sender.ReadPropertyAsync(adr, deviceObjId, BacnetPropertyIds.PROP_OBJECT_LIST);

Because there is no RoutedDestination in Complex-ACK, adr.Equals(_address) in BacnetAsyncResult.OnComplexAck returns false.

1 2