Top "Datacontract" questions

A data contract is a formal agreement between a service and a client that abstractly describes the data to be exchanged.

Using custom DataContractResolver in WCF, to transport inheritance trees involving generics

I've got a WCF service, in which there are operations which accept a non-generic base class as parameter. [DataContract] class …

c# .net wcf datacontract
InvalidDataContractException is an invalid collection type since it have DataContractAttribute

I have this code: [DataContract] class MyData { private Int32 dato1; [DataMember] public Int32 Dato1 { get { return dato1; } set { dato1 = value; } } …

c# wcf exception serialization datacontract
Which list/collection type is best to use in a WCF data contract?

When defining a WCF data contract, which type should one use for collections/lists? Should it be ICollection<T&…

.net wcf datacontract
How do I pass value to List<string> property while testing my WCF service?

I am testing a WCF service method which accepts a DC type parameter, some of my DC properties are of …

visual-studio-2010 list wcf-client datacontract wcftestclient