| 1234567891011121314151617181920212223242526 |
- // 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()
- {
- }
- [XmlAttribute]
- public XmlQualifiedName Refer
- {
- get{ return refer; }
- set{ refer = value; }
- }
- }
- }
|