Re: Return List<double> in Silverlight WCFPortal

Re: Return List<double> in Silverlight WCFPortal

Old forum URL: forums.lhotka.net/forums/t/10708.aspx


JonnyBee posted on Thursday, September 22, 2011

Yes, it should be ReadProperty:

    public static PropertyInfo<MobileList<Int16>> VariableIdsProperty = RegisterProperty<MobileList<Int16>>(c => c.VariableIds);     public MobileList<Int16> VariableIds     {       get { return ReadProperty(VariableIdsProperty); }       private set { LoadProperty(VariableIdsProperty, value); }     }

 

 

Copyright (c) Marimer LLC