21 lines
771 B
C#
21 lines
771 B
C#
|
//------------------------------------------------------------------------------
|
||
|
// <copyright file="XmlSchemaContent.cs" company="Microsoft">
|
||
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||
|
// </copyright>
|
||
|
// <owner current="true" primary="true">priyal</owner>
|
||
|
//------------------------------------------------------------------------------
|
||
|
|
||
|
namespace System.Xml.Schema {
|
||
|
|
||
|
using System.Collections;
|
||
|
using System.Xml.Serialization;
|
||
|
|
||
|
/// <include file='doc\XmlSchemaContent.uex' path='docs/doc[@for="XmlSchemaContent"]/*' />
|
||
|
/// <devdoc>
|
||
|
/// <para>[To be supplied.]</para>
|
||
|
/// </devdoc>
|
||
|
public abstract class XmlSchemaContent : XmlSchemaAnnotated {
|
||
|
}
|
||
|
|
||
|
}
|