XmlAttributeOverrides.cs 823 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. //
  2. // XmlAttributeOverrides.cs:
  3. //
  4. // Author:
  5. // John Donagher ([email protected])
  6. //
  7. // (C) 2002 John Donagher
  8. //
  9. using System;
  10. namespace System.Xml.Serialization
  11. {
  12. /// <summary>
  13. /// Summary description for XmlAttributeOverrides.
  14. /// </summary>
  15. public class XmlAttributeOverrides
  16. {
  17. public XmlAttributes this[Type type]
  18. {
  19. [MonoTODO]
  20. get{ throw new NotImplementedException (); }
  21. }
  22. public XmlAttributes this[Type type, string member]
  23. {
  24. [MonoTODO]
  25. get{ throw new NotImplementedException (); }
  26. }
  27. [MonoTODO]
  28. public void Add (Type type, XmlAttributes attributes)
  29. {
  30. throw new NotImplementedException ();
  31. }
  32. [MonoTODO]
  33. public void Add( Type type, string member, XmlAttributes attributes)
  34. {
  35. throw new NotImplementedException ();
  36. }
  37. }
  38. }