9 overrides of Clone
dotnet-svcutil-lib (9)
FrameworkFork\Microsoft.Xml\Xml\schema\XmlSchemaAttribute.cs (1)
222internal override XmlSchemaObject Clone()
FrameworkFork\Microsoft.Xml\Xml\schema\XmlSchemaAttributeGroup.cs (1)
121internal override XmlSchemaObject Clone()
FrameworkFork\Microsoft.Xml\Xml\schema\XmlSchemaComplexType.cs (1)
406internal override XmlSchemaObject Clone()
FrameworkFork\Microsoft.Xml\Xml\schema\XmlSchemaElement.cs (1)
356internal override XmlSchemaObject Clone()
FrameworkFork\Microsoft.Xml\Xml\schema\XmlSchemaGroup.cs (1)
89internal override XmlSchemaObject Clone()
FrameworkFork\Microsoft.Xml\Xml\schema\XmlSchemaSimpleType.cs (1)
59internal override XmlSchemaObject Clone()
FrameworkFork\Microsoft.Xml\Xml\schema\XmlSchemaSimpleTypeList.cs (1)
54internal override XmlSchemaObject Clone()
FrameworkFork\Microsoft.Xml\Xml\schema\XmlSchemaSimpleTypeRestriction.cs (1)
67internal override XmlSchemaObject Clone()
FrameworkFork\Microsoft.Xml\Xml\schema\XmlSchemaSimpleTypeUnion.cs (1)
54internal override XmlSchemaObject Clone()
13 references to Clone
dotnet-svcutil-lib (13)
FrameworkFork\Microsoft.Xml\Xml\schema\SchemaCollectionCompiler.cs (1)
1113XmlSchemaChoice choice = (XmlSchemaChoice)substitutionGroup.Choice.Clone();
FrameworkFork\Microsoft.Xml\Xml\schema\XmlSchema.cs (2)
633newItem = _items[i].Clone(); 641XmlSchemaExternal newInclude = (XmlSchemaExternal)_includes[i].Clone();
FrameworkFork\Microsoft.Xml\Xml\schema\XmlSchemaComplexType.cs (9)
422XmlSchemaSimpleContent newSimpleContent = (XmlSchemaSimpleContent)simpleContent.Clone(); 427XmlSchemaSimpleContentExtension newSimpleExt = (XmlSchemaSimpleContentExtension)simpleExt.Clone(); 435XmlSchemaSimpleContentRestriction newSimpleRest = (XmlSchemaSimpleContentRestriction)simpleRest.Clone(); 446XmlSchemaComplexContent newComplexContent = (XmlSchemaComplexContent)complexContent.Clone(); 451XmlSchemaComplexContentExtension newComplexExt = (XmlSchemaComplexContentExtension)complexExt.Clone(); 463XmlSchemaComplexContentRestriction newComplexRest = (XmlSchemaComplexContentRestriction)complexRest.Clone(); 513newAttGroupRef = (XmlSchemaAttributeGroupRef)attributeGroupRef.Clone(); 551newGroupBase = (XmlSchemaGroupBase)groupBase.Clone(); 557XmlSchemaGroupRef newGroupRef = (XmlSchemaGroupRef)particle.Clone();
FrameworkFork\Microsoft.Xml\Xml\schema\XmlSchemaSimpleType.cs (1)
64newSimpleType.Content = (XmlSchemaSimpleTypeContent)_content.Clone();