2003-10-04 Todd Berman <tberman@gentoo.org>
[mono.git] / mcs / class / Microsoft.Web.Services / Microsoft.Web.Services.Addressing / To.cs
1 //
2 // Microsoft.Web.Services.Addressing.To
3 //
4 // Author: Todd Berman <tberman@gentoo.org>
5 //
6 // (C) 2003 Todd Berman
7
8 using System;
9 using System.Xml;
10 using Microsoft.Web.Services.Xml;
11
12 namespace Microsoft.Web.Services.Addressing
13 {
14
15         public class To : AttributedUri, IXmlElement
16         {
17
18                 [MonoTODO]
19                 public XmlElement GetXml (XmlDocument document)
20                 {
21                         throw new NotImplementedException ();
22                 }
23
24                 [MonoTODO]
25                 public void LoadXml (XmlElement element)
26                 {
27                         throw new NotImplementedException ();
28                 }
29
30         }
31
32 }