2
0

SerializationHelper.cs 1002 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. //
  2. // System.Data.Sql.SerializationHelper
  3. //
  4. // Author:
  5. // Tim Coleman ([email protected])
  6. //
  7. // Copyright (C) Tim Coleman, 2003
  8. //
  9. #if NET_1_2
  10. using System.IO;
  11. namespace System.Data.Sql {
  12. public class SerializationHelper
  13. {
  14. #region Methods
  15. [MonoTODO]
  16. public static object Deserialize (Stream s, Type resultType)
  17. {
  18. throw new NotImplementedException ();
  19. }
  20. [MonoTODO]
  21. public static byte[] GetSerializationBlob (Type t)
  22. {
  23. throw new NotImplementedException ();
  24. }
  25. [MonoTODO]
  26. public static void Serialize (Stream s, object instance)
  27. {
  28. throw new NotImplementedException ();
  29. }
  30. [MonoTODO]
  31. public static int SizeInBytes (object instance)
  32. {
  33. throw new NotImplementedException ();
  34. }
  35. [MonoTODO]
  36. public static int SizeInBytes (Type t)
  37. {
  38. throw new NotImplementedException ();
  39. }
  40. [MonoTODO]
  41. public static bool ValidateSerializationBlob (byte[] blob, Type t)
  42. {
  43. throw new NotImplementedException ();
  44. }
  45. #endregion // Methods
  46. }
  47. }
  48. #endif