XmlMemberMapping.cs 996 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  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. #region Properties
  12. public bool Any {
  13. [MonoTODO]
  14. get { throw new NotImplementedException (); }
  15. }
  16. public string ElementName {
  17. [MonoTODO]
  18. get { throw new NotImplementedException (); }
  19. }
  20. public string MemberName {
  21. [MonoTODO]
  22. get { throw new NotImplementedException (); }
  23. }
  24. public string Namespace {
  25. [MonoTODO]
  26. get { throw new NotImplementedException (); }
  27. }
  28. public string TypeFullName {
  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. }