Community Tip - When posting, your subject should be specific and summarize your question. Here are some additional tips on asking a great question. X
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