c# - How do i get dynamic properties using EPIServer webservice -


i'm trying dynamic property using episerver webservice. thing see can create new properties using

pagestoreservice.rawproperty dynproperty = new pagestoreservice.rawproperty(); dynproperty.isdynamicproperty = true; 

but have no clue how property. question this. proper way

dynamicproperty dynproperty = dynamicproperty.load(therootnode, "mydynamicprop"); 

using episerver webservice? in advance!

very similar this question. roll own service obtain information

[webservice(namespace=http://yournamespace/")] public class pagereferenceservice : system.web.services.webservice {      [webmethod()]     public pagereference getdynamicproperty(pagereference rootnode, string propertyname)     {         return dynamicproperty.load(rootnode, propertyname);     }   } 

(untested)


Popular posts from this blog

How to calculate SNR of signals in MATLAB? -

c# - Attempting to upload to FTP: System.Net.WebException: System error -

ios - UISlider customization: how to properly add shadow to custom knob image -