//------------------------------------------------------------------------------ // // Copyright (c) Microsoft Corporation. All rights reserved. // // Microsoft //------------------------------------------------------------------------------ namespace System.Xml.Schema { using System.Collections; using System.Xml.Serialization; /// /// /// [To be supplied.] /// public class XmlSchemaAppInfo : XmlSchemaObject { string source; XmlNode[] markup; /// /// /// [To be supplied.] /// [XmlAttribute("source", DataType="anyURI")] public string Source { get { return source; } set { source = value; } } /// /// /// [To be supplied.] /// [XmlText(), XmlAnyElement] public XmlNode[] Markup { get { return markup; } set { markup = value; } } } }