I have some class that I\'m passing as a result of a service method, and that class has a get-only property:
[DataContract] public class ErrorBase { [DataM
[DataMember(Name = "PropertyName")] public string PropertyName { get { return ""; } private set { } }