* roottypes.cs: Rename from tree.cs.
[mono.git] / mcs / class / Microsoft.Web.Services / Microsoft.Web.Services.Messaging / ISoapFormatter.cs
1 // Microsoft.Web.Services.Messaging.ISoapFormmatter.cs
2 //
3 // Author: Duncan Mak  <duncan@ximian.com>
4 //
5 // (C) Ximian, Inc. 2003.
6
7 using System.IO;
8 using Microsoft.Web.Services;
9
10 namespace Microsoft.Web.Services.Messaging {
11         public interface ISoapFormatter {
12
13                 SoapEnvelope Deserialize (Stream stream);
14
15                 void Serialize (SoapEnvelope envelope, Stream stream);
16         }
17 }