You've already forked linux-packaging-mono
							
							
		
			
				
	
	
		
			41 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			41 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
| //------------------------------------------------------------------------------
 | |
| // <copyright file="XmlSchemaSequence.cs" company="Microsoft">
 | |
| //     Copyright (c) Microsoft Corporation.  All rights reserved.
 | |
| // </copyright> 
 | |
| // <owner current="true" primary="true">Microsoft</owner>                                                                
 | |
| //------------------------------------------------------------------------------
 | |
| 
 | |
| namespace System.Xml.Schema {
 | |
| 
 | |
|     using System.Xml.Serialization;
 | |
| 
 | |
|     /// <include file='doc\XmlSchemaSequence.uex' path='docs/doc[@for="XmlSchemaSequence"]/*' />
 | |
|     /// <devdoc>
 | |
|     ///    <para>[To be supplied.]</para>
 | |
|     /// </devdoc>
 | |
|     public class XmlSchemaSequence : XmlSchemaGroupBase {
 | |
|         XmlSchemaObjectCollection items = new XmlSchemaObjectCollection();
 | |
| 
 | |
|         /// <include file='doc\XmlSchemaSequence.uex' path='docs/doc[@for="XmlSchemaSequence.Items"]/*' />
 | |
|         /// <devdoc>
 | |
|         ///    <para>[To be supplied.]</para>
 | |
|         /// </devdoc>
 | |
|         [XmlElement("element", typeof(XmlSchemaElement)),
 | |
|          XmlElement("group", typeof(XmlSchemaGroupRef)),
 | |
|          XmlElement("choice", typeof(XmlSchemaChoice)),
 | |
|          XmlElement("sequence", typeof(XmlSchemaSequence)),
 | |
|          XmlElement("any", typeof(XmlSchemaAny))]
 | |
|         public override  XmlSchemaObjectCollection Items {
 | |
|             get { return items; }
 | |
|         }
 | |
| 
 | |
|         internal override bool IsEmpty {
 | |
|             get { return base.IsEmpty || items.Count == 0; }
 | |
|         }
 | |
| 
 | |
|         internal override void SetItems(XmlSchemaObjectCollection newItems) {
 | |
|             items = newItems;
 | |
|         }
 | |
|     }
 | |
| }
 |