Welcome to mirror list, hosted at ThFree Co, Russian Federation.

XmlSchemaGroupBase.cs « System.Xml.Schema « System.XML « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 152e3b09f573862d7f9d5a2f3b1b6a4a34a59336 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Author: Dwivedi, Ajay kumar
//            Adwiv@Yahoo.com
using System;
using System.Xml.Serialization;

namespace System.Xml.Schema
{
	/// <summary>
	/// Summary description for XmlSchemaGroupBase.
	/// </summary>
	public abstract class XmlSchemaGroupBase : XmlSchemaParticle
	{
		protected XmlSchemaGroupBase()
		{
		}

		[XmlIgnore]
		public abstract XmlSchemaObjectCollection Items { get; }
	}
}