1 //------------------------------------------------------------------------------
2 // <copyright file="XmlSchemaSimpleContent.cs" company="Microsoft">
3 //     Copyright (c) Microsoft Corporation.  All rights reserved.
4 // </copyright>
5 // <owner current="true" primary="true">Microsoft</owner>
6 //------------------------------------------------------------------------------
7 
8 namespace System.Xml.Schema {
9 
10     using System.Xml.Serialization;
11 
12     /// <include file='doc\XmlSchemaSimpleContent.uex' path='docs/doc[@for="XmlSchemaSimpleContent"]/*' />
13     /// <devdoc>
14     ///    <para>[To be supplied.]</para>
15     /// </devdoc>
16     public class XmlSchemaSimpleContent : XmlSchemaContentModel {
17         XmlSchemaContent content;
18 
19         /// <include file='doc\XmlSchemaSimpleContent.uex' path='docs/doc[@for="XmlSchemaSimpleContent.Content"]/*' />
20         /// <devdoc>
21         ///    <para>[To be supplied.]</para>
22         /// </devdoc>
23         [XmlElement("restriction", typeof(XmlSchemaSimpleContentRestriction)),
24          XmlElement("extension", typeof(XmlSchemaSimpleContentExtension))]
25         public override XmlSchemaContent Content {
26             get { return content; }
27             set { content = value; }
28         }
29     }
30 }
31