XmlMemberMapping.cs 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. //
  2. // System.Xml.Serialization.XmlMemberMapping
  3. //
  4. // Author:
  5. // Tim Coleman ([email protected])
  6. //
  7. // Copyright (C) Tim Coleman, 2002
  8. //
  9. namespace System.Xml.Serialization {
  10. public class XmlMemberMapping {
  11. internal XmlMemberMapping ()
  12. {
  13. }
  14. #region Properties
  15. public bool Any {
  16. [MonoTODO]
  17. get { throw new NotImplementedException (); }
  18. }
  19. public string ElementName {
  20. [MonoTODO]
  21. get { throw new NotImplementedException (); }
  22. }
  23. public string MemberName {
  24. [MonoTODO]
  25. get { throw new NotImplementedException (); }
  26. }
  27. public string Namespace {
  28. [MonoTODO]
  29. get { throw new NotImplementedException (); }
  30. }
  31. public string TypeFullName {
  32. [MonoTODO]
  33. get { throw new NotImplementedException (); }
  34. }
  35. public string TypeName {
  36. [MonoTODO]
  37. get { throw new NotImplementedException (); }
  38. }
  39. public string TypeNamespace {
  40. [MonoTODO]
  41. get { throw new NotImplementedException (); }
  42. }
  43. #endregion // Properties
  44. }
  45. }