I'm trying to get a dynamic property using EPIServer Webservice. The only thing a see I can do is create new properties using
PageStoreService.RawProperty dynProperty = new PageStoreService.RawProperty();
dynProperty.IsDynamicProperty = true;
but I have no clue how I do to get a property. My question is this. What is the proper way to do
DynamicProperty dynProperty = DynamicProperty.Load(therootnode, "MyDynamicProp");
using EPIServer webservice? Thanks in advance!