|
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
namespace Microsoft.Xml.Schema
{
using System;
using Microsoft.Xml;
/// <include file='doc\XmlSchemaValidity.uex' path='docs/doc[@for="XmlSchemaValidity"]/*' />
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
public enum XmlSchemaValidity
{
/// <include file='doc\XmlSchemaValidity.uex' path='docs/doc[@for="XmlSchemaValidity.NotKnown"]/*' />
NotKnown,
/// <include file='doc\XmlSchemaValidity.uex' path='docs/doc[@for="XmlSchemaValidity.Valid"]/*' />
Valid,
/// <include file='doc\XmlSchemaValidity.uex' path='docs/doc[@for="XmlSchemaValidity.Invalid"]/*' />
Invalid,
}
}
|