passing null as filter in the MonitoringParameters makes the CreateMonitoredItems call fail (BadEncodingLimitsExceeded).
This seems to happen because the implementation of the new method
At the same time, the TestClient project still passes null for the filter parameter.
Please note that with the old Nuget 1.0.8 I was able to pass null as filter.
If I try to pass a filter constructed for example like the following:
new DataChangeFilter(DataChangeTrigger.Status, DeadbandType.None, 0);
then I get a BadEndOfStream error.
It's not clear to me what to pass in the filter argument to make the call work.
Thanks.
Hi,
passing
null
as filter in theMonitoringParameters
makes theCreateMonitoredItems
call fail (BadEncodingLimitsExceeded). This seems to happen because the implementation of the new methodAt the same time, the TestClient project still passes
null
for the filter parameter. Please note that with the old Nuget 1.0.8 I was able to passnull
as filter.If I try to pass a filter constructed for example like the following:
then I get a BadEndOfStream error.
It's not clear to me what to pass in the filter argument to make the call work. Thanks.