| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- // Author: Dwivedi, Ajay kumar
- // [email protected]
- using System;
- using System.Xml;
- using System.Xml.Serialization;
- namespace System.Xml.Schema
- {
- /// <summary>
- /// Summary description for XmlSchemaExternal.
- /// </summary>
- public abstract class XmlSchemaExternal : XmlSchemaObject
- {
- private string id;
- private XmlSchema schema;
- private string location;
- private XmlAttribute[] unhandledAttributes;
- protected XmlSchemaExternal()
- {}
- [System.Xml.Serialization.XmlAttribute("id")]
- public string Id
- {
- get{ return id; }
- set{ id = value; }
- }
- [XmlIgnore]
- public XmlSchema Schema
- {
- get{ return schema; }
- set{ schema = value; }
- }
-
- [System.Xml.Serialization.XmlAttribute("schemaLocation")]
- public string SchemaLocation
- {
- get{ return location; }
- set{ location = value; }
- }
- [XmlAnyAttribute]
- public XmlAttribute[] UnhandledAttributes
- {
- get{ return unhandledAttributes; }
- set{ unhandledAttributes = value; }
- }
- }
- }
|