9 overrides of Clone
System.Private.Xml (9)
System\Xml\Schema\XmlSchemaAttribute.cs (1)
171internal override XmlSchemaObject Clone()
System\Xml\Schema\XmlSchemaAttributeGroup.cs (1)
89internal override XmlSchemaObject Clone()
System\Xml\Schema\XmlSchemaComplexType.cs (1)
316internal override XmlSchemaObject Clone()
System\Xml\Schema\XmlSchemaElement.cs (1)
271internal override XmlSchemaObject Clone()
System\Xml\Schema\XmlSchemaGroup.cs (1)
72internal override XmlSchemaObject Clone()
System\Xml\Schema\XmlSchemaSimpleType.cs (1)
44internal override XmlSchemaObject Clone()
System\Xml\Schema\XmlSchemaSimpleTypeList.cs (1)
36internal override XmlSchemaObject Clone()
System\Xml\Schema\XmlSchemaSimpleTypeRestriction.cs (1)
46internal override XmlSchemaObject Clone()
System\Xml\Schema\XmlSchemaSimpleTypeUnion.cs (1)
39internal override XmlSchemaObject Clone()
13 references to Clone
System.Private.Xml (13)
System\Xml\Schema\SchemaCollectionCompiler.cs (1)
1111XmlSchemaChoice choice = (XmlSchemaChoice)substitutionGroup.Choice.Clone();
System\Xml\Schema\XmlSchema.cs (2)
482newItem = _items[i].Clone(); 490XmlSchemaExternal newInclude = (XmlSchemaExternal)_includes[i].Clone();
System\Xml\Schema\XmlSchemaComplexType.cs (9)
332XmlSchemaSimpleContent newSimpleContent = (XmlSchemaSimpleContent)simpleContent.Clone(); 337XmlSchemaSimpleContentExtension newSimpleExt = (XmlSchemaSimpleContentExtension)simpleExt.Clone(); 345XmlSchemaSimpleContentRestriction newSimpleRest = (XmlSchemaSimpleContentRestriction)simpleRest.Clone(); 356XmlSchemaComplexContent newComplexContent = (XmlSchemaComplexContent)complexContent.Clone(); 361XmlSchemaComplexContentExtension newComplexExt = (XmlSchemaComplexContentExtension)complexExt.Clone(); 373XmlSchemaComplexContentRestriction newComplexRest = (XmlSchemaComplexContentRestriction)complexRest.Clone(); 425newAttGroupRef = (XmlSchemaAttributeGroupRef)attributeGroupRef.Clone(); 464newGroupBase = (XmlSchemaGroupBase)groupBase.Clone(); 470XmlSchemaGroupRef newGroupRef = (XmlSchemaGroupRef)particle.Clone();
System\Xml\Schema\XmlSchemaSimpleType.cs (1)
49newSimpleType.Content = (XmlSchemaSimpleTypeContent)_content.Clone();