//------------------------------------------------------------------------------ // // Copyright (c) Microsoft Corporation. All rights reserved. // // priyal //------------------------------------------------------------------------------ using System.Xml; using System.Collections; namespace System.Xml.Schema { /// public interface IXmlSchemaInfo { /// XmlSchemaValidity Validity { get; } /// bool IsDefault { get; } /// bool IsNil { get; } /// XmlSchemaSimpleType MemberType { get; } /// XmlSchemaType SchemaType { get; } /// XmlSchemaElement SchemaElement { get; } /// XmlSchemaAttribute SchemaAttribute { get; } } }