| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- // Author: Dwivedi, Ajay kumar
- // [email protected]
- using System;
- using System.Xml.Serialization;
- using System.Xml;
- namespace System.Xml.Schema
- {
- /// <summary>
- /// Summary description for XmlSchemaNotation.
- /// </summary>
- public class XmlSchemaNotation : XmlSchemaAnnotated
- {
- private string name;
- private string pub;
- private string system;
- private XmlQualifiedName qualifiedName;
- public XmlSchemaNotation()
- {
- }
- [System.Xml.Serialization.XmlAttribute("name")]
- public string Name
- {
- get{ return name; }
- set{ name = value; }
- }
- [System.Xml.Serialization.XmlAttribute("public")]
- public string Public
- {
- get{ return pub; }
- set{ pub = value; }
- }
- [System.Xml.Serialization.XmlAttribute("system")]
- public string System
- {
- get{ return system; }
- set{ system = value; }
- }
- [XmlIgnore]
- internal XmlQualifiedName QualifiedName
- {
- get{ return qualifiedName;}
- }
- [MonoTODO]
- internal bool Compile(ValidationEventHandler h, XmlSchemaInfo info)
- {
- return false;
- }
-
- [MonoTODO]
- internal bool Validate(ValidationEventHandler h)
- {
- return false;
- }
- }
- }
|