38 lines
1.6 KiB
C#
38 lines
1.6 KiB
C#
|
//------------------------------------------------------------------------------
|
||
|
// <copyright file="IXmlSchemaInfo.cs" company="Microsoft">
|
||
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||
|
// </copyright>
|
||
|
// <owner current="true" primary="true">priyal</owner>
|
||
|
//------------------------------------------------------------------------------
|
||
|
|
||
|
using System.Xml;
|
||
|
using System.Collections;
|
||
|
|
||
|
namespace System.Xml.Schema {
|
||
|
|
||
|
/// <include file='doc\IXmlSchemaInfo.uex' path='docs/doc[@for="IXmlSchemaInfo"]/*' />
|
||
|
public interface IXmlSchemaInfo {
|
||
|
|
||
|
/// <include file='doc\IXmlSchemaInfo.uex' path='docs/doc[@for="IXmlSchemaInfo.Validity"]/*' />
|
||
|
XmlSchemaValidity Validity { get; }
|
||
|
|
||
|
/// <include file='doc\IXmlSchemaInfo.uex' path='docs/doc[@for="IXmlSchemaInfo.IsDefault"]/*' />
|
||
|
bool IsDefault { get; }
|
||
|
|
||
|
/// <include file='doc\IXmlSchemaInfo.uex' path='docs/doc[@for="IXmlSchemaInfo.IsNil"]/*' />
|
||
|
bool IsNil { get; }
|
||
|
|
||
|
/// <include file='doc\IXmlSchemaInfo.uex' path='docs/doc[@for="IXmlSchemaInfo.MemberType"]/*' />
|
||
|
XmlSchemaSimpleType MemberType { get; }
|
||
|
|
||
|
/// <include file='doc\IXmlSchemaInfo.uex' path='docs/doc[@for="IXmlSchemaInfo.SchemaType"]/*' />
|
||
|
XmlSchemaType SchemaType { get; }
|
||
|
|
||
|
/// <include file='doc\IXmlSchemaInfo.uex' path='docs/doc[@for="IXmlSchemaInfo.SchemaElement"]/*' />
|
||
|
XmlSchemaElement SchemaElement { get; }
|
||
|
|
||
|
/// <include file='doc\IXmlSchemaInfo.uex' path='docs/doc[@for="IXmlSchemaInfo.SchemaAttribute"]/*' />
|
||
|
XmlSchemaAttribute SchemaAttribute { get; }
|
||
|
}
|
||
|
}
|