|
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System.Xml.Serialization;
namespace System.Xml.Schema
{
// if change the enum, have to change xsdbuilder as well.
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
public enum XmlSchemaForm
{
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
[XmlIgnore]
None,
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
[XmlEnum("qualified")]
Qualified,
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
[XmlEnum("unqualified")]
Unqualified,
}
}
|