IXmlSchemaInfo.cs 457 B

123456789101112131415161718192021222324252627282930
  1. //
  2. // IXmlSchemaInfo.cs
  3. //
  4. // Author:
  5. // Atsushi Enomoto <[email protected]>
  6. //
  7. // (C)2004 Novell, Inc.
  8. //
  9. #if NET_2_0
  10. namespace System.Xml.Schema
  11. {
  12. public interface IXmlSchemaInfo
  13. {
  14. bool IsDefault { get; }
  15. bool IsNil { get; }
  16. XmlSchemaSimpleType MemberType { get; }
  17. XmlSchemaAttribute SchemaAttribute { get; }
  18. XmlSchemaElement SchemaElement { get; }
  19. XmlSchemaType SchemaType { get; }
  20. XmlSchemaValidity Validity { get; }
  21. }
  22. }
  23. #endif