2003-10-05 Sebastien Pouliot <spouliot@videotron.ca>
[mono.git] / mcs / class / Microsoft.Web.Services / Microsoft.Web.Services.Xml / IXmlElement.cs
1 //
2 // IXmlElement.cs: Interface IXmlElement
3 //
4 // Author:
5 //      Sebastien Pouliot (spouliot@motus.com)
6 //
7 // (C) 2002, 2003 Motus Technologies Inc. (http://www.motus.com)
8 //
9
10 using System.Xml;
11
12 namespace Microsoft.Web.Services.Xml {
13
14         public interface IXmlElement {
15
16                 XmlElement GetXml (XmlDocument document);
17
18                 void LoadXml (XmlElement element);
19         }
20 }