// Author: Dwivedi, Ajay kumar // Adwiv@Yahoo.com using System; using System.Xml; using System.Xml.Serialization; using System.ComponentModel; namespace System.Xml.Schema { /// /// Summary description for XmlSchemaFacet. /// public abstract class XmlSchemaFacet : XmlSchemaAnnotated { private bool isFixed; private string val; protected XmlSchemaFacet() { } [System.Xml.Serialization.XmlAttribute("value")] public string Value { get{ return val; } set{ val = value; } } [DefaultValue(false)] [System.Xml.Serialization.XmlAttribute("fixed")] public virtual bool IsFixed { get{ return isFixed; } set{ isFixed = value; } } } }