The community will undergo maintenance on October 16th at 10:00 PM PDT and will be unavailable for up to one hour.
Hi ,
I am trying to get the cache method for a remotely bound property using service. I managed to get all the remote bindings in the composer via service but cant seem to fetch the cache method. If someone has an insight on this please let me know.
Solved! Go to Solution.
You can try this snippet on the Thing.
let result = Things["AssetA"].GetRemotePropertyBinding({
propertyName: "Temperature" /* STRING */
});
This will give you aspects column where you can find cache method.
You can try this snippet on the Thing.
let result = Things["AssetA"].GetRemotePropertyBinding({
propertyName: "Temperature" /* STRING */
});
This will give you aspects column where you can find cache method.
Thanks a lot man