Community Tip - Want the oppurtunity to discuss enhancements to PTC products? Join a working group! 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