e79aa3c0ed
Former-commit-id: a2155e9bd80020e49e72e86c44da02a8ac0e57a4
24 lines
993 B
C#
24 lines
993 B
C#
//------------------------------------------------------------------------------
|
|
// <copyright file="XmlSchemaValidity.cs" company="Microsoft">
|
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
// </copyright>
|
|
// <owner current="true" primary="true">priyal</owner>
|
|
//------------------------------------------------------------------------------
|
|
|
|
namespace System.Xml.Schema {
|
|
|
|
/// <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,
|
|
}
|
|
}
|