XmlAnyAttributeAttribute.cs 516 B

12345678910111213141516171819202122232425262728
  1. //
  2. // XmlAnyAttribute.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 XmlAnyAttributeAttribute.
  14. /// </summary>
  15. ///
  16. [AttributeUsage(AttributeTargets.Property | AttributeTargets.Field
  17. | AttributeTargets.Parameter | AttributeTargets.ReturnValue)]
  18. public class XmlAnyAttributeAttribute : Attribute
  19. {
  20. public XmlAnyAttributeAttribute()
  21. {
  22. }
  23. }
  24. }