XmlMembersMapping.cs 952 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. //
  2. // System.Xml.Serialization.XmlMembersMapping
  3. //
  4. // Author:
  5. // Tim Coleman ([email protected])
  6. //
  7. // Copyright (C) Tim Coleman, 2002
  8. //
  9. using System.Reflection;
  10. namespace System.Xml.Serialization {
  11. public class XmlMembersMapping : XmlMapping {
  12. #region Properties
  13. public int Count {
  14. [MonoTODO]
  15. get { throw new NotImplementedException (); }
  16. }
  17. public string ElementName {
  18. [MonoTODO]
  19. get { throw new NotImplementedException (); }
  20. }
  21. public XmlMemberMapping this [int index] {
  22. [MonoTODO]
  23. get { throw new NotImplementedException (); }
  24. }
  25. public string Namespace {
  26. [MonoTODO]
  27. get { throw new NotImplementedException (); }
  28. }
  29. public string TypeName {
  30. [MonoTODO]
  31. get { throw new NotImplementedException (); }
  32. }
  33. public string TypeNamespace {
  34. [MonoTODO]
  35. get { throw new NotImplementedException (); }
  36. }
  37. #endregion // Properties
  38. }
  39. }