Skip to main content
4-Participant
November 24, 2021
Solved

GET Cachemethod for a property

  • November 24, 2021
  • 1 reply
  • 1242 views

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.

@paic 

 

Best answer by Mukul_467346

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.

1 reply

1-Visitor
November 25, 2021

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.

4-Participant
November 25, 2021

Thanks a lot man