I noticed that the following code:
public Stringification { get { ":)"; } }
doesn't expose the property when creating an auto-generated client for WCF communication. However, if I explicitly add the set method as follows:
public Stringification { get { return SomeProperty + "!"; } set { } }
it works dandy. Is it a limitation of WCF? Is it documented anywhere? I couldn't find any info on that...