|
//------------------------------------------------------------------------------
// <copyright file="XmlSchemaContentType.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\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
};
}
|