Hello David and other pals,
Perhaps I am not seing it but, do we have a way to retrieve the properties of an unknown object ?
For example : in the case of using only one HttpClient for many Views, instead of adding the data values from inside each view, I do create an object. I have thought to submit that object to an AB function which would iterate each property and put it with its value as the HttpClient.
To be able to iterate, I add the properties in a separate array in the current View. And in the function, read each item and get its value from the Object.
This works great but is a bit long when using the same mechanism from the HttpClient.Response with an unkown Object (for ex: read an object property named "keys", split it by comma, iterate the array, get the property, get the value, get the property named "subkeys", split it, etc.).
Perhaps is there a better way to achieve this ? Many thanks
Edit: for example Object.GetProperties ?