| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- //
- // System.Data.Sql.SerializationHelper
- //
- // Author:
- // Tim Coleman ([email protected])
- //
- // Copyright (C) Tim Coleman, 2003
- //
- #if NET_1_2
- using System.IO;
- namespace System.Data.Sql {
- public class SerializationHelper
- {
- #region Methods
- [MonoTODO]
- public static object Deserialize (Stream s, Type resultType)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public static byte[] GetSerializationBlob (Type t)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public static void Serialize (Stream s, object instance)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public static int SizeInBytes (object instance)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public static int SizeInBytes (Type t)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public static bool ValidateSerializationBlob (byte[] blob, Type t)
- {
- throw new NotImplementedException ();
- }
- #endregion // Methods
- }
- }
- #endif
|