Implemented interface member:
method
Clone
System.ICloneable.Clone()
2 overrides of Clone
System.Data.Common (1)
System\Data\PropertyCollection.cs (1)
28public override object Clone()
System.Private.CoreLib (1)
src\libraries\System.Private.CoreLib\src\System\Collections\Hashtable.cs (1)
1330public override object Clone()
16 references to Clone
dotnet-svcutil-lib (5)
FrameworkFork\Microsoft.Xml\Xml\schema\NamespaceList.cs (1)
75nsl._set = (Hashtable)(_set.Clone());
FrameworkFork\Microsoft.Xml\Xml\Serialization\Advanced\SchemaImporterExtension.cs (1)
101clone._exNames = (Hashtable)this.Names.Clone();
FrameworkFork\Microsoft.Xml\Xml\Serialization\CodeIdentifiers.cs (2)
195newIdentifiers._identifiers = (Hashtable)_identifiers.Clone(); 196newIdentifiers._reservedIdentifiers = (Hashtable)_reservedIdentifiers.Clone();
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlSerializerNamespaces.cs (1)
37_namespaces = (Hashtable)namespaces.Namespaces.Clone();
PresentationCore (1)
System\Windows\Input\StagingAreaInputItem.cs (1)
32_dictionary = (Hashtable) promote._dictionary.Clone();
PresentationFramework (3)
System\Windows\Markup\BamlMapTable.cs (1)
1681ObjectHashTable = (Hashtable)_objectHashTable.Clone(),
System\Windows\Markup\XamlTypeMapper.cs (2)
283_typeLookupFromXmlHashtable = _typeLookupFromXmlHashtable.Clone() as Hashtable, 284_namespaceMapHashList = _namespaceMapHashList.Clone() as Hashtable,
System.Configuration.ConfigurationManager (3)
System\Configuration\DictionarySectionHandler.cs (1)
34res = (Hashtable)((Hashtable)parent).Clone();
System\Configuration\SettingsPropertyCollection.cs (1)
120_hashtable = (Hashtable)h.Clone();
System\Configuration\SettingsPropertyValueCollection.cs (1)
122_indices = (Hashtable)indices.Clone();
System.Private.CoreLib (1)
src\libraries\System.Private.CoreLib\src\System\Collections\Hashtable.cs (1)
1334return Synchronized((Hashtable)_table.Clone());
System.Private.Xml (3)
System\Xml\Schema\NamespaceList.cs (1)
70nsl._set = (Hashtable)(_set.Clone());
System\Xml\Serialization\CodeIdentifiers.cs (2)
184newIdentifiers._identifiers = (Hashtable)_identifiers.Clone(); 185newIdentifiers._reservedIdentifiers = (Hashtable)_reservedIdentifiers.Clone();