Blogger :
Thinktecture Blog
All posts :
All posts by Thinktecture Blog
Category :
WSCF/WCF
Blogged date : 2006 Sep 12
Just a quick note for everyone doing first steps in WCF service contract design.
Usually you get introduced to WCF by using a Data Contract (denoted by the
[DataContract] attribute) which internally is used by the new
DataContractSerializer.
But there is more than 'just'
[DataContract] which is supported by the
DataContractSerializer, like
[Serializable],
IXmlSerializable and
[MessageContract]. Insteed of copying here the supported features, I am going to link to Sowmny's
excellent articles. A must read.