|
// 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\XmlSchemaContentType.uex' path='docs/doc[@for="XmlSchemaContentType"]/*' />
public enum XmlSchemaContentType
{
/// <include file='doc\XmlSchemaContentType.uex' path='docs/doc[@for="XmlSchemaContentType.TextOnly"]/*' />
TextOnly,
/// <include file='doc\XmlSchemaContentType.uex' path='docs/doc[@for="XmlSchemaContentType.Empty"]/*' />
Empty,
/// <include file='doc\XmlSchemaContentType.uex' path='docs/doc[@for="XmlSchemaContentType.ElementOnly"]/*' />
ElementOnly,
/// <include file='doc\XmlSchemaContentType.uex' path='docs/doc[@for="XmlSchemaContentType.Mixed"]/*' />
Mixed
};
}
|