/* This file is a class represents a message that will be serialized into XML for use in a manually created service. For more information on creating manual services in .NET by using XML Serialization, see my article on XmlHttp Service Interop (part 3) at the following link: http://www.netfxharmonics.com/2007/05/XmlHttp-Service-Interop-Part-3-XML-Serialization.aspx If you are completely unfamiliar with XmlHttp interop, see part 1 of the same series. For information on using the techniques mentioned here for interop with Windows Communication Foundation (WCF), then see part 1 of the same series. */ using System; using System.Xml.Serialization; namespace Sample.Service.Messages { public class SaveSampleListMessage { public String Code; public String Key; [XmlArrayItem("Item")] public String[] List; } }