XmlMembersMapping.cs 997 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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. internal XmlMembersMapping ()
  13. {
  14. }
  15. #region Properties
  16. public int Count {
  17. [MonoTODO]
  18. get { throw new NotImplementedException (); }
  19. }
  20. public string ElementName {
  21. [MonoTODO]
  22. get { throw new NotImplementedException (); }
  23. }
  24. public XmlMemberMapping this [int index] {
  25. [MonoTODO]
  26. get { throw new NotImplementedException (); }
  27. }
  28. public string Namespace {
  29. [MonoTODO]
  30. get { throw new NotImplementedException (); }
  31. }
  32. public string TypeName {
  33. [MonoTODO]
  34. get { throw new NotImplementedException (); }
  35. }
  36. public string TypeNamespace {
  37. [MonoTODO]
  38. get { throw new NotImplementedException (); }
  39. }
  40. #endregion // Properties
  41. }
  42. }