XmlSchemaValidity.cs 245 B

12345678910111213141516171819
  1. //
  2. // System.Xml.Schema.XmlSchemaValidity.cs
  3. //
  4. // Author:
  5. // Atsushi Enomoto <[email protected]>
  6. //
  7. #if NET_2_0
  8. namespace System.Xml.Schema
  9. {
  10. public enum XmlSchemaValidity
  11. {
  12. Invalid,
  13. NotKnown,
  14. Valid
  15. }
  16. }
  17. #endif