A data contract is a formal agreement between a service and a client that abstractly describes the data to be exchanged.
How do I define DataContract for abstract classes in WCF? I have a class "Person" which I communicate successfully using …
.net wcf abstract-class datacontractI need invoke webservice operations using standard wsdl, but data objects must be different in client and in the server. …
c# wcf interface datacontract operationcontractI'm currently using wrapper classes for my DataSets ,in order to implement custom serialization. I would like to use DataContractSerializer (…
c# serialization datacontractserializer datacontractI have a following problem. A customer requested a web service that returns data in following format: <status> &…
wcf datacontract datamemberI have two classes as below: [DataContract] public class Address { [DataMember] public string Line1 [DataMember] public string Line2 [DataMember] public …
wcf constructor datacontractI am trying to create a class with a read-only Id field, however I am having problems retaining the value …
wcf datacontract datamemberI'm using DataContractSerializer to serialize/deserialize my classes to/from XML. Everything works fine, but at some point I'd like …
c# .net xsd schema datacontractI cannot manage to specify custom names for properties. I receive some JSON from the server (which I cannot change) …
c# json datacontract datamemberI have a simple WCF service that returns the time from the server. I've confirmed that data is being sent …
wcf silverlight datacontract emptydatatextGiven an operation contract such as: [OperationContract] void Operation(string param1, string param2, int param3); This could be redesigned to: […
c# wcf web-services datacontract