| 123456789101112131415161718192021222324252627 |
- // Author: Dwivedi, Ajay kumar
- // [email protected]
- using System;
- using System.Xml;
- using System.Xml.Serialization;
- namespace System.Xml.Schema
- {
- /// <summary>
- /// Summary description for XmlSchemaKeyref.
- /// </summary>
- public class XmlSchemaKeyref : XmlSchemaIdentityConstraint
- {
- private XmlQualifiedName refer;
- public XmlSchemaKeyref()
- {
- }
- [System.Xml.Serialization.XmlAttribute("refer")]
- public XmlQualifiedName Refer
- {
- get{ return refer; }
- set{ refer = value; }
- }
- }
- }
|