Geode native client deserialise PdxInstanceImpl
问题 I have a REST client that populates a Geode region with Json data which the Geode REST API automatically converts to a PdxInstance type. The region triggers a C# native client listener AfterCreate(EntryEvent<TKey, TVal> ev) in which the TVal type ev.NewValue is seen as type PdxInstanceImpl and looks like: PDX[7534066,__GEMFIRE_JSON]{@type=MyClass, Field1=Value1, Field2=Value2} I've seen from here that the following code can get at the individual Pdx fields IPdxInstance pdx = (IPdxInstance)ev