2
0

XmlSchemaKeyref.cs 541 B

123456789101112131415161718192021222324252627
  1. // Author: Dwivedi, Ajay kumar
  2. // [email protected]
  3. using System;
  4. using System.Xml;
  5. using System.Xml.Serialization;
  6. namespace System.Xml.Schema
  7. {
  8. /// <summary>
  9. /// Summary description for XmlSchemaKeyref.
  10. /// </summary>
  11. public class XmlSchemaKeyref : XmlSchemaIdentityConstraint
  12. {
  13. private XmlQualifiedName refer;
  14. public XmlSchemaKeyref()
  15. {
  16. }
  17. [System.Xml.Serialization.XmlAttribute("refer")]
  18. public XmlQualifiedName Refer
  19. {
  20. get{ return refer; }
  21. set{ refer = value; }
  22. }
  23. }
  24. }