Implemented interface member:
method
Clone
System.ICloneable.Clone()
3 overrides of Clone
mscorlib (1)
system\collections\hashtable.cs (1)
1486public override Object Clone() {
System.Data (1)
fx\src\data\System\Data\PropertyCollection.cs (1)
28public override object Clone() {
System.Web (1)
UI\BaseTemplateParser.cs (1)
343public override object Clone() {
31 references to Clone
mscorlib (1)
system\collections\hashtable.cs (1)
1488return Hashtable.Synchronized((Hashtable)_table.Clone());
PresentationCore (5)
Core\CSharp\System\Windows\Input\StagingAreaInputItem.cs (1)
33_dictionary = (Hashtable) promote._dictionary.Clone();
Core\CSharp\System\Windows\Media\UniqueEventHelper.cs (4)
86Hashtable htDelegates = (Hashtable)_htDelegates.Clone(); 103ueh._htDelegates = (Hashtable)_htDelegates.Clone(); 197Hashtable htDelegates = (Hashtable)_htDelegates.Clone(); 214ueh._htDelegates = (Hashtable)_htDelegates.Clone();
PresentationFramework (3)
src\Framework\System\Windows\Markup\BamlMapTable.cs (1)
1708table._objectHashTable = (Hashtable)_objectHashTable.Clone();
src\Framework\System\Windows\Markup\XamlTypeMapper.cs (2)
309newMapper._typeLookupFromXmlHashtable = _typeLookupFromXmlHashtable.Clone() as Hashtable; 310newMapper._namespaceMapHashList = _namespaceMapHashList.Clone() as Hashtable;
System (6)
compmod\system\codedom\compiler\CodeDomConfigurationHandler.cs (2)
108_compilerLanguages = (Hashtable)original._compilerLanguages.Clone(); 111_compilerExtensions = (Hashtable)original._compilerExtensions.Clone();
services\monitoring\system\diagnosticts\DiagnosticsConfigurationHandler.cs (1)
51config = (Hashtable)parentConfig.Clone();
sys\system\configuration\DictionarySectionHandler.cs (1)
37res = (Hashtable)((Hashtable)parent).Clone();
sys\system\configuration\SettingsPropertyCollection.cs (1)
152_Hashtable = (Hashtable)h.Clone();
sys\system\configuration\SettingsPropertyValueCollection.cs (1)
159_Indices = (Hashtable)indices.Clone();
System.Data (1)
fx\src\data\System\Data\Common\DBConnectionString.cs (1)
98_parsetable = (Hashtable) _parsetable.Clone();
System.Transactions (3)
System\Transactions\Oletx\OletxResourceManager.cs (1)
272localEnlistmentHashtable = (Hashtable) this.enlistmentHashtable.Clone();
System\Transactions\Oletx\OletxTransactionManager.cs (2)
1011txHashTable = (Hashtable) TransactionManager.PromotedTransactionTable.Clone(); 1043rmHashTable = (Hashtable) OletxTransactionManager.resourceManagerHashTable.Clone();
System.Web (4)
Cache\SqlCacheDependency.cs (1)
857Hashtable originalTables = (Hashtable)dbState._tables.Clone();
UI\TagNameToTypeMapper.cs (1)
256_userControlRegisterEntries = (Hashtable)_userControlRegisterEntries.Clone();
UI\TemplateParser.cs (2)
656_namespaceEntries = (Hashtable) _namespaceEntries.Clone(); 2321_namespaceEntries = (Hashtable) _namespaceEntries.Clone();
System.Web.Mobile (2)
Mobile\DeviceFilterDictionary.cs (2)
45_comparisonEvaluators = (Hashtable)original._comparisonEvaluators.Clone(); 46_delegateEvaluators = (Hashtable)original._delegateEvaluators.Clone();
System.Workflow.Runtime (1)
WorkflowStateRollbackService.cs (1)
51this.completedContextActivities = (Hashtable)this.workflowExecutor.CompletedContextActivities.Clone();
System.Xml (5)
System\Xml\Schema\NamespaceList.cs (1)
61nsl.set = (Hashtable)(set.Clone());
System\Xml\Serialization\Advanced\SchemaImporterExtension.cs (1)
86clone.exNames = (Hashtable)this.Names.Clone();
System\Xml\Serialization\CodeIdentifiers.cs (2)
173newIdentifiers.identifiers = (Hashtable)this.identifiers.Clone(); 174newIdentifiers.reservedIdentifiers = (Hashtable)this.reservedIdentifiers.Clone();
System\Xml\Serialization\XmlSerializerNamespaces.cs (1)
37this.namespaces = (Hashtable)namespaces.Namespaces.Clone();