9 overrides of Clone
System.Xml (9)
System\Xml\Schema\XmlSchemaAttribute.cs (1)
197internal override XmlSchemaObject Clone() {
System\Xml\Schema\XmlSchemaAttributeGroup.cs (1)
106internal override XmlSchemaObject Clone() {
System\Xml\Schema\XmlSchemaComplexType.cs (1)
353internal override XmlSchemaObject Clone() {
System\Xml\Schema\XmlSchemaElement.cs (1)
314internal override XmlSchemaObject Clone() {
System\Xml\Schema\XmlSchemaGroup.cs (1)
79internal override XmlSchemaObject Clone() {
System\Xml\Schema\XmlSchemaSimpleType.cs (1)
51internal override XmlSchemaObject Clone() {
System\Xml\Schema\XmlSchemaSimpleTypeList.cs (1)
49internal override XmlSchemaObject Clone() {
System\Xml\Schema\XmlSchemaSimpleTypeRestriction.cs (1)
62internal override XmlSchemaObject Clone() {
System\Xml\Schema\XmlSchemaSimpleTypeUnion.cs (1)
48internal override XmlSchemaObject Clone() {
13 references to Clone
System.Xml (13)
System\Xml\Schema\SchemaCollectionCompiler.cs (1)
884XmlSchemaChoice choice = (XmlSchemaChoice)substitutionGroup.Choice.Clone();
System\Xml\Schema\XmlSchema.cs (2)
568newItem = items[i].Clone(); 575XmlSchemaExternal newInclude = (XmlSchemaExternal)this.includes[i].Clone();
System\Xml\Schema\XmlSchemaComplexType.cs (9)
366XmlSchemaSimpleContent newSimpleContent = (XmlSchemaSimpleContent)simpleContent.Clone(); 370XmlSchemaSimpleContentExtension newSimpleExt = (XmlSchemaSimpleContentExtension)simpleExt.Clone(); 377XmlSchemaSimpleContentRestriction newSimpleRest = (XmlSchemaSimpleContentRestriction)simpleRest.Clone(); 387XmlSchemaComplexContent newComplexContent = (XmlSchemaComplexContent)complexContent.Clone(); 391XmlSchemaComplexContentExtension newComplexExt = (XmlSchemaComplexContentExtension)complexExt.Clone(); 401XmlSchemaComplexContentRestriction newComplexRest = (XmlSchemaComplexContentRestriction)complexRest.Clone(); 443newAttGroupRef = (XmlSchemaAttributeGroupRef)attributeGroupRef.Clone(); 475newGroupBase = (XmlSchemaGroupBase)groupBase.Clone(); 480XmlSchemaGroupRef newGroupRef = (XmlSchemaGroupRef)particle.Clone();
System\Xml\Schema\XmlSchemaSimpleType.cs (1)
54newSimpleType.Content = (XmlSchemaSimpleTypeContent)content.Clone();