1 //------------------------------------------------------------------------------
2 // <copyright file="IXmlSchemaInfo.cs" company="Microsoft">
3 //     Copyright (c) Microsoft Corporation.  All rights reserved.
4 // </copyright>
5 // <owner current="true" primary="true">priyal</owner>
6 //------------------------------------------------------------------------------
7 
8 using System.Xml;
9 using System.Collections;
10 
11 namespace System.Xml.Schema {
12 
13     /// <include file='doc\IXmlSchemaInfo.uex' path='docs/doc[@for="IXmlSchemaInfo"]/*' />
14     public interface IXmlSchemaInfo {
15 
16         /// <include file='doc\IXmlSchemaInfo.uex' path='docs/doc[@for="IXmlSchemaInfo.Validity"]/*' />
17         XmlSchemaValidity Validity { get; }
18 
19         /// <include file='doc\IXmlSchemaInfo.uex' path='docs/doc[@for="IXmlSchemaInfo.IsDefault"]/*' />
20         bool IsDefault { get; }
21 
22         /// <include file='doc\IXmlSchemaInfo.uex' path='docs/doc[@for="IXmlSchemaInfo.IsNil"]/*' />
23         bool IsNil { get; }
24 
25         /// <include file='doc\IXmlSchemaInfo.uex' path='docs/doc[@for="IXmlSchemaInfo.MemberType"]/*' />
26         XmlSchemaSimpleType MemberType { get; }
27 
28         /// <include file='doc\IXmlSchemaInfo.uex' path='docs/doc[@for="IXmlSchemaInfo.SchemaType"]/*' />
29         XmlSchemaType SchemaType { get; }
30 
31         /// <include file='doc\IXmlSchemaInfo.uex' path='docs/doc[@for="IXmlSchemaInfo.SchemaElement"]/*' />
32         XmlSchemaElement SchemaElement { get; }
33 
34         /// <include file='doc\IXmlSchemaInfo.uex' path='docs/doc[@for="IXmlSchemaInfo.SchemaAttribute"]/*' />
35         XmlSchemaAttribute SchemaAttribute { get; }
36     }
37 }
38