2005-01-31 Zoltan Varga <vargaz@freemail.hu>
[mono.git] / mcs / class / Microsoft.Web.Services / Microsoft.Web.Services.Messaging / SoapDimeFormatter.cs
1 //
2 // Microsoft.Web.Services.Messaging.SoapDimeFormatter.cs
3 //
4 // Author: Todd Berman <tberman@gentoo.org>
5 //
6 // (C) 2003 Todd Berman
7
8 using System;
9 using System.IO;
10 using Microsoft.Web.Services;
11
12 namespace Microsoft.Web.Services.Messaging
13 {
14         public class SoapDimeFormatter : ISoapFormatter
15         {
16
17                 [MonoTODO]
18                 public SoapEnvelope Deserialize (Stream stream)
19                 {
20                         throw new NotImplementedException ();
21                 }
22
23                 [MonoTODO]
24                 public void Serialize (SoapEnvelope envelope, Stream stream)
25                 {
26                         throw new NotImplementedException ();
27                 }
28         }
29 }