//------------------------------------------------------------------------------ // // Copyright (c) Microsoft Corporation. All rights reserved. // // ElenaK //------------------------------------------------------------------------------ namespace System.Xml.Serialization { using System.Xml.Schema; /// /// /// /// [To be supplied.] /// public interface IXmlSerializable { /// XmlSchema GetSchema(); /// void ReadXml(XmlReader reader); /// void WriteXml(XmlWriter writer); } }