SerializationInfo.cs 760 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. //
  2. // System.Runtime.Serialization.SerializationInfo.cs
  3. //
  4. // Author:
  5. // Miguel de Icaza ([email protected])
  6. //
  7. // (C) Ximian, Inc. http://www.ximian.com
  8. //
  9. // TODO: This is just a skeleton to get corlib to compile.
  10. //
  11. namespace System.Runtime.Serialization {
  12. public sealed class SerializationInfo {
  13. Type type;
  14. IFormatterConverter converter;
  15. public SerializationInfo (Type type, IFormatterConverter converter)
  16. {
  17. this.type = type;
  18. this.converter = converter;
  19. }
  20. public string AssemblyName {
  21. get {
  22. return "TODO: IMPLEMENT ME";
  23. }
  24. set {
  25. }
  26. }
  27. public string FullTypeName {
  28. get {
  29. return "TODO: IMLEMENT ME";
  30. }
  31. set {
  32. }
  33. }
  34. public int MemberCount {
  35. get {
  36. return 0;
  37. }
  38. }
  39. }
  40. }