| 123456789101112131415161718192021222324252627282930 |
- //
- // IXmlSchemaInfo.cs
- //
- // Author:
- // Atsushi Enomoto <[email protected]>
- //
- // (C)2004 Novell, Inc.
- //
- #if NET_2_0
- namespace System.Xml.Schema
- {
- public interface IXmlSchemaInfo
- {
- bool IsDefault { get; }
- bool IsNil { get; }
- XmlSchemaSimpleType MemberType { get; }
- XmlSchemaAttribute SchemaAttribute { get; }
- XmlSchemaElement SchemaElement { get; }
- XmlSchemaType SchemaType { get; }
- XmlSchemaValidity Validity { get; }
- }
- }
- #endif
|