//------------------------------------------------------------------------------ // // Copyright (c) Microsoft Corporation. All rights reserved. // // Microsoft //------------------------------------------------------------------------------ namespace System.Xml.Schema { using System.Collections; using System.ComponentModel; using System.Xml.Serialization; /// /// /// [To be supplied.] /// public class XmlSchemaIdentityConstraint : XmlSchemaAnnotated { string name; XmlSchemaXPath selector; XmlSchemaObjectCollection fields = new XmlSchemaObjectCollection(); XmlQualifiedName qualifiedName = XmlQualifiedName.Empty; CompiledIdentityConstraint compiledConstraint = null; /// /// /// [To be supplied.] /// [XmlAttribute("name")] public string Name { get { return name; } set { name = value; } } /// /// /// [To be supplied.] /// [XmlElement("selector", typeof(XmlSchemaXPath))] public XmlSchemaXPath Selector { get { return selector; } set { selector = value; } } /// /// /// [To be supplied.] /// [XmlElement("field", typeof(XmlSchemaXPath))] public XmlSchemaObjectCollection Fields { get { return fields; } } /// /// /// [To be supplied.] /// [XmlIgnore] public XmlQualifiedName QualifiedName { get { return qualifiedName; } } internal void SetQualifiedName(XmlQualifiedName value) { qualifiedName = value; } [XmlIgnore] internal CompiledIdentityConstraint CompiledConstraint { get { return compiledConstraint; } set { compiledConstraint = value; } } [XmlIgnore] internal override string NameAttribute { get { return Name; } set { Name = value; } } } /// /// /// [To be supplied.] /// public class XmlSchemaXPath : XmlSchemaAnnotated { string xpath; /// /// /// [To be supplied.] /// [XmlAttribute("xpath"), DefaultValue("")] public string XPath { get { return xpath; } set { xpath = value; } } } /// /// /// [To be supplied.] /// public class XmlSchemaUnique : XmlSchemaIdentityConstraint { } /// /// /// [To be supplied.] /// public class XmlSchemaKey : XmlSchemaIdentityConstraint { } /// /// /// [To be supplied.] /// public class XmlSchemaKeyref : XmlSchemaIdentityConstraint { XmlQualifiedName refer = XmlQualifiedName.Empty; /// /// /// [To be supplied.] /// [XmlAttribute("refer")] public XmlQualifiedName Refer { get { return refer; } set { refer = (value == null ? XmlQualifiedName.Empty : value); } } } }