2004-04-06 Andreas Nahr <ClassDevelopment@A-SoftTech.com>
[mono.git] / mcs / class / System.Data / System.Data.Sql / IBinarySerialize.cs
1 //
2 // System.Data.Sql.IBinarySerialize
3 //
4 // Author:
5 //   Tim Coleman (tim@timcoleman.com)
6 //
7 // Copyright (C) Tim Coleman, 2003
8 //
9
10 #if NET_1_2
11
12 using System.IO;
13
14 namespace System.Data.Sql {
15         public interface IBinarySerialize 
16         {
17                 #region Methods
18
19                 void Read (BinaryReader r);
20                 void Write (BinaryWriter r);
21
22                 #endregion // Methods
23         }
24 }
25
26 #endif