This text file contains example code from: Chapter 19 - Service Performance Optimization Book - SOA with .NET & Windows Azure: Realizing Service-Orientation with the Microsoft Platform Series - Prentice Hall Service-Oriented Computing Series from Thomas Erl (www.soabooks.com/community) Certification - These examples are used as part of the Certified SOA .NET Developer curriculum (www.soaschool.com) <programlisting linenumbering="unnumbered">[DataContract(Namespace = "http://www.example.org/SellFast/2007/1/15")] public class CatalogRequest { [DataMember] public int CustomerNumber; [DataMember] <?docpage num="632"?> public bool <emphasis role="pd_red">IncludeImages</emphasis>; [DataMember] public string RequestType; [DataMember] public int CatalogNumber; [DataMember] public DateTime PublicationStartDate; [DataMember] public DateTime PublicationEndDate; }</programlisting> </example>