A critical vulnerability was discovered in React Server Components (Next.js). Our Systems Remain Fully Protected. Learn More.
AI OnAI Off
A critical vulnerability was discovered in React Server Components (Next.js). Our Systems Remain Fully Protected. Learn More.
HI! I am trying to somehow get MyBlock class instance from PropertyData.
I have tried:
propertyData.Value as MyBlock;ProxyUtil.GetUnproxiedInstance( propertyData.Value);((IProxyTargetAccessor) propertyData.Value).DynProxyGetTarget();((MyBlock)propertyData.Value).CreateWritableClone ( );They all return MyBlockProxy!
ProxyUtil.GetUnproxiedType ( propertyData.Value );gives the correct type (MyBlock)Is there a way to do this?