I have a custom UI Element. I am accessing it through a thread other than the owning thread. I am able to get/check its type (custom type) and got correct result. Is it safe to depend upon this result? (I know in order to access/update its value we have to use owning UI thread)
Ex:
bool result = ((uiElement as CustomType) != null)