//------------------------------------------------------------------------------ // // Copyright (c) Microsoft Corporation. All rights reserved. // // Microsoft //------------------------------------------------------------------------------ namespace System.Xml.Schema { using System.Xml.Serialization; /// /// /// [To be supplied.] /// public class XmlSchemaImport : XmlSchemaExternal { string ns; XmlSchemaAnnotation annotation; /// public XmlSchemaImport() { Compositor = Compositor.Import; } /// [XmlAttribute("namespace", DataType="anyURI")] public string Namespace { get { return ns; } set { ns = value; } } /// [XmlElement("annotation", typeof(XmlSchemaAnnotation))] public XmlSchemaAnnotation Annotation { get { return annotation; } set { annotation = value; } } internal override void AddAnnotation(XmlSchemaAnnotation annotation) { this.annotation = annotation; } } }