12 overrides of Clone
SMDiagnostics (1)
System\ServiceModel\Diagnostics\TraceXPathNavigator.cs (1)
440public override XPathNavigator Clone()
System.Data (1)
fx\src\data\System\NewXml\DataDocumentXPathNavigator.cs (1)
29public override XPathNavigator Clone(){
System.Data.SqlXml (2)
System\Xml\Xsl\Runtime\RtfNavigator.cs (2)
259public override XPathNavigator Clone() { 360public override XPathNavigator Clone() {
System.ServiceModel (3)
System\ServiceModel\Dispatcher\QuerySafeNavigator.cs (2)
302public override XPathNavigator Clone() 713public override XPathNavigator Clone()
System\ServiceModel\Dispatcher\SeekableMessageNavigator.cs (1)
347public override XPathNavigator Clone()
System.Transactions (1)
System\Transactions\Trace\TraceXPathNavigator.cs (1)
199public override XPathNavigator Clone()
System.Xml (3)
System\Xml\Cache\XPathDocumentNavigator.cs (1)
138public override XPathNavigator Clone() {
System\Xml\Dom\DocumentXPathNavigator.cs (1)
35public override XPathNavigator Clone() {
System\Xml\XPath\XPathNavigatorReader.cs (1)
1148public override XPathNavigator Clone() {
System.Xml.Linq (1)
System\Xml\Linq\XNodeNavigator.cs (1)
269public override XPathNavigator Clone() {
251 references to Clone
System.Data.Entity (117)
System\Data\Mapping\StorageMappingItemLoader.cs (115)
213return LoadMappingItems(nav.Clone()); 244StorageEntityContainerMapping entityContainerMap = LoadMappingChildNodes(nav.Clone()); 295m_alias.Add(StorageMappingItemLoader.GetAttributeValue(nav.Clone(), StorageMslConstructs.AliasKeyAttribute), StorageMappingItemLoader.GetAttributeValue(nav.Clone(), StorageMslConstructs.AliasValueAttribute)); 307var containerMapping = hasContainerMapping ? LoadEntityContainerMapping(nav.Clone()) : null; 320string entityContainerName = GetAttributeValue(nav.Clone(), StorageMslConstructs.CdmEntityContainerAttribute); 321string storageEntityContainerName = GetAttributeValue(nav.Clone(), StorageMslConstructs.StorageEntityContainerAttribute); 323bool generateUpdateViews = GetBoolAttributeValue(nav.Clone(), StorageMslConstructs.GenerateUpdateViews, true /* default is true */); 390LoadEntityContainerMappingChildNodes(nav.Clone(), entityContainerMapping, storageEntityContainerType); 414LoadEntitySetMapping(nav.Clone(), entityContainerMapping, storageEntityContainerType); 420LoadAssociationSetMapping(nav.Clone(), entityContainerMapping, storageEntityContainerType); 425LoadFunctionImportMapping(nav.Clone(), entityContainerMapping, storageEntityContainerType); 445ValidateFunctionAssociationFunctionMappingUnique(nav.Clone(), entityContainerMapping); 446ValidateModificationFunctionMappingConsistentForAssociations(nav.Clone(), entityContainerMapping); 447ValidateQueryViewsClosure(nav.Clone(), entityContainerMapping); 448ValidateEntitySetFunctionMappingClosure(nav.Clone(), entityContainerMapping); 791string entitySetName = GetAliasResolvedAttributeValue(nav.Clone(), StorageMslConstructs.EntitySetMappingNameAttribute); 793string entityTypeName = StorageMappingItemLoader.GetAttributeValue(nav.Clone(), StorageMslConstructs.EntitySetMappingTypeNameAttribute); 795string tableName = GetAliasResolvedAttributeValue(nav.Clone(), StorageMslConstructs.EntitySetMappingStoreEntitySetAttribute); 797bool distinctFlag = GetBoolAttributeValue(nav.Clone(), StorageMslConstructs.MappingFragmentMakeColumnsDistinctAttribute, false /*default value*/); 846tableName = GetAliasResolvedAttributeValue(nav.Clone(), StorageMslConstructs.EntityTypeMappingStoreEntitySetAttribute); 848LoadEntityTypeMapping(nav.Clone(), setMapping, tableName, storageEntityContainerType, false /*No distinct flag so far*/, entityContainerMapping.GenerateUpdateViews); 862if(!LoadQueryView(nav.Clone(), setMapping)) 879LoadEntityTypeMapping(nav.Clone(), setMapping, tableName, storageEntityContainerType, distinctFlag, entityContainerMapping.GenerateUpdateViews); 881ValidateAllEntityTypesHaveFunctionMapping(nav.Clone(), setMapping); 933string entityTypeAttribute = GetAttributeValue(nav.Clone(), StorageMslConstructs.EntitySetMappingTypeNameAttribute); 1041if (!TryParseEntityTypeAttribute(nav.Clone(), rootEntityType, 1072LoadEntityTypeModificationFunctionMapping(nav.Clone(), entitySetMapping, entityTypeMapping); 1082bool distinctFlag = GetBoolAttributeValue(nav.Clone(), StorageMslConstructs.MappingFragmentMakeColumnsDistinctAttribute, false /*default value*/); 1090tableName = GetAliasResolvedAttributeValue(nav.Clone(), StorageMslConstructs.MappingFragmentStoreEntitySetAttribute); 1091StorageMappingFragment fragment = LoadMappingFragment(nav.Clone(), entityTypeMapping, tableName, storageEntityContainerType, distinctFlag); 1117StorageMappingFragment fragment = LoadMappingFragment(nav.Clone(), entityTypeMapping, tableName, 1185deleteFunctionMapping = functionLoader.LoadEntityTypeModificationFunctionMapping(nav.Clone(), entitySetMapping.Set, false, true, entityType); 1188insertFunctionMapping = functionLoader.LoadEntityTypeModificationFunctionMapping(nav.Clone(), entitySetMapping.Set, true, false, entityType); 1191updateFunctionMapping = functionLoader.LoadEntityTypeModificationFunctionMapping(nav.Clone(), entitySetMapping.Set, true, true, entityType); 1258string typeNameString = StorageMappingItemLoader.GetAttributeValue(nav.Clone(), StorageMslConstructs.EntitySetMappingTypeNameAttribute); 1301if (!TryParseEntityTypeAttribute(nav.Clone(), rootEntityType, 1404string associationSetName = GetAliasResolvedAttributeValue(nav.Clone(), StorageMslConstructs.AssociationSetMappingNameAttribute); 1406string associationTypeName = GetAliasResolvedAttributeValue(nav.Clone(), StorageMslConstructs.AssociationSetMappingTypeNameAttribute); 1408string tableName = GetAliasResolvedAttributeValue(nav.Clone(), StorageMslConstructs.EntitySetMappingStoreEntitySetAttribute); 1479if (!LoadQueryView(nav.Clone(), setMapping)) 1500LoadAssociationTypeMapping(nav.Clone(), setMapping, associationTypeName, tableName, storageEntityContainerType); 1524IXmlLineInfo lineInfo = (IXmlLineInfo)(nav.Clone()); 1568List<FunctionImportStructuralTypeMapping> typeMappings = GetFunctionImportMappingResultMapping(nav.Clone(), lineInfo, targetFunction, functionImport, resultSetIndex, typeMappingsList); 1687string functionName = GetAliasResolvedAttributeValue(nav.Clone(), StorageMslConstructs.FunctionImportMappingFunctionNameAttribute); 1720string functionImportName = GetAliasResolvedAttributeValue(nav.Clone(), StorageMslConstructs.FunctionImportMappingFunctionImportNameAttribute); 1865nav.Clone(), 1891if (TryLoadFunctionImportComplexTypeMapping(nav.Clone(), resultComplexType, functionImport, out typeMapping)) 1927if (!LoadFunctionImportStructuralType(nav.Clone(), new List<StructuralType>() { complexType }, columnRenameMappings, null)) 1939string complexTypeName = GetAttributeValue(nav.Clone(), StorageMslConstructs.ComplexTypeMappingTypeNameAttribute); 1971string entityTypeString = GetAttributeValue(nav.Clone(), StorageMslConstructs.EntitySetMappingTypeNameAttribute); 1976if (!TryParseEntityTypeAttribute(nav.Clone(), resultEntityType, registerEntityTypeMismatchError, out isOfTypeEntityTypes, out entityTypes)) 1988if (!LoadFunctionImportStructuralType(nav.Clone(), currentTypesInHierachy, columnRenameMappings, conditions)) 2007IXmlLineInfo lineInfo = (IXmlLineInfo)(nav.Clone()); 2051string memberName = GetAliasResolvedAttributeValue(nav.Clone(), StorageMslConstructs.ScalarPropertyNameAttribute); 2052string columnName = GetAliasResolvedAttributeValue(nav.Clone(), StorageMslConstructs.ScalarPropertyColumnNameAttribute); 2320string columnName = GetAliasResolvedAttributeValue(nav.Clone(), StorageMslConstructs.ConditionColumnNameAttribute); 2321string value = GetAliasResolvedAttributeValue(nav.Clone(), StorageMslConstructs.ConditionValueAttribute); 2322string isNull = GetAliasResolvedAttributeValue(nav.Clone(), StorageMslConstructs.ConditionIsNullAttribute); 2344XPathNavigator columnValue = nav.Clone(); 2581StorageMappingFragment fragment = LoadAssociationMappingFragment(nav.Clone(), associationSetMapping, associationTypeMapping, tableName, storageEntityContainerType); 2614deleteFunctionMapping = functionLoader.LoadAssociationSetModificationFunctionMapping(nav.Clone(), associationSetMapping.Set, false); 2617insertFunctionMapping = functionLoader.LoadAssociationSetModificationFunctionMapping(nav.Clone(), associationSetMapping.Set, true); 2673string propertyName = StorageMappingItemLoader.GetAttributeValue(nav.Clone(), StorageMslConstructs.ComplexPropertyNameAttribute); 2682StorageScalarPropertyMapping scalarMap = LoadScalarPropertyMapping(nav.Clone(), containerType, tableType.Properties); 2691LoadComplexPropertyMapping(nav.Clone(), containerType, tableType.Properties); 2700LoadConditionPropertyMapping(nav.Clone(), containerType, tableType.Properties); 2776string endName = GetAliasResolvedAttributeValue(nav.Clone(), StorageMslConstructs.EndPropertyMappingNameAttribute); 2787fragment.AddProperty((LoadEndPropertyMapping(nav.Clone(), end, tableType))); 2798StorageConditionPropertyMapping conditionMap = LoadConditionPropertyMapping(nav.Clone(), null /*containerType*/, tableType.Properties); 2813LoadAssociationTypeModificationFunctionMapping(nav.Clone(), setMapping, typeMapping); 2838string propertyName = GetAliasResolvedAttributeValue(nav.Clone(), StorageMslConstructs.ScalarPropertyNameAttribute); 2868string columnName = GetAliasResolvedAttributeValue(nav.Clone(), StorageMslConstructs.ScalarPropertyColumnNameAttribute); 2911string propertyName = GetAliasResolvedAttributeValue(nav.Clone(), StorageMslConstructs.ComplexPropertyNameAttribute); 2917string memberTypeName = GetAliasResolvedAttributeValue(nav.Clone(), StorageMslConstructs.ComplexTypeMappingTypeNameAttribute); 2973XPathNavigator cloneNav = nav.Clone(); 2994complexPropertyMapping.AddTypeMapping(LoadComplexTypeMapping(nav.Clone(), null, tableProperties)); 3000complexPropertyMapping.AddTypeMapping(LoadComplexTypeMapping(nav.Clone(), memberType, tableProperties)); 3009string partialAttribute = StorageMappingItemLoader.GetAttributeValue(nav.Clone(), StorageMslConstructs.ComplexPropertyIsPartialAttribute); 3025string typeName = GetAliasResolvedAttributeValue(nav.Clone(), StorageMslConstructs.ComplexTypeMappingTypeNameAttribute); 3077EdmType containerType = typeMapping.GetOwnerType(StorageMappingItemLoader.GetAttributeValue(nav.Clone(), StorageMslConstructs.ComplexPropertyNameAttribute)); 3082LoadScalarPropertyMapping(nav.Clone(), containerType, tableType); 3091LoadComplexPropertyMapping(nav.Clone(), containerType, tableType); 3100LoadConditionPropertyMapping(nav.Clone(), containerType, tableType); 3145StorageScalarPropertyMapping scalarMap = LoadScalarPropertyMapping(nav.Clone(), containerType, tableType.Properties); 3183string propertyName = GetAliasResolvedAttributeValue(nav.Clone(), StorageMslConstructs.ConditionNameAttribute); 3185string columnName = GetAliasResolvedAttributeValue(nav.Clone(), StorageMslConstructs.ConditionColumnNameAttribute); 3235string isNullAttribute = StorageMappingItemLoader.GetAttributeValue(nav.Clone(), StorageMslConstructs.ConditionIsNullAttribute); 3273if(!StorageMappingItemLoader.TryGetTypedAttributeValue(nav.Clone(), StorageMslConstructs.ConditionValueAttribute, clrMemberType, m_sourceLocation, m_parsingErrors, out value)) 3281value = StorageMappingItemLoader.GetEnumAttributeValue(nav.Clone(), StorageMslConstructs.ConditionValueAttribute, (EnumType)edmType, m_sourceLocation, m_parsingErrors); 3768m_function = LoadAndValidateFunctionMetadata(nav.Clone(), out rowsAffectedParameter); 3777IEnumerable<StorageModificationFunctionParameterBinding> parameters = LoadParameterBindings(nav.Clone(), entityType); 3778IEnumerable<StorageModificationFunctionResultBinding> resultBindings = LoadResultBindings(nav.Clone(), entityType); 3790m_function = LoadAndValidateFunctionMetadata(nav.Clone(), out rowsAffectedParameter); 3807IEnumerable<StorageModificationFunctionParameterBinding> parameters = LoadParameterBindings(nav.Clone(), m_associationSet.ElementType); 3827string propertyName = m_parentLoader.GetAliasResolvedAttributeValue(nav.Clone(), 3829string columnName = m_parentLoader.GetAliasResolvedAttributeValue(nav.Clone(), 3888LoadParameterBindings(nav.Clone(), type, restrictToKeyMembers: false)); 3919nav.Clone(), type, restrictToKeyMembers); 3934nav.Clone(), type, out complexType); 3941LoadParameterBindings(nav.Clone(), complexType, restrictToKeyMembers)) 3951AssociationSetEnd toEnd = LoadAssociationEnd(nav.Clone()); 3959LoadParameterBindings(nav.Clone(), toEnd.EntitySet.ElementType, true /* restrictToKeyMembers */)) 3970AssociationSetEnd end = LoadEndProperty(nav.Clone()); 3977LoadParameterBindings(nav.Clone(), end.EntitySet.ElementType, true /* restrictToKeyMembers */)) 3997nav.Clone(), StorageMslConstructs.AssociationSetAttribute); 3999nav.Clone(), StorageMslConstructs.FromAttribute); 4001nav.Clone(), StorageMslConstructs.ToAttribute); 4094nav.Clone(), StorageMslConstructs.EndPropertyMappingNameAttribute); 4118nav.Clone(), StorageMslConstructs.ComplexPropertyNameAttribute); 4120nav.Clone(), StorageMslConstructs.ComplexTypeMappingTypeNameAttribute); 4166string parameterName = m_parentLoader.GetAliasResolvedAttributeValue(nav.Clone(), StorageMslConstructs.ParameterNameAttribute); 4167string propertyName = m_parentLoader.GetAliasResolvedAttributeValue(nav.Clone(), StorageMslConstructs.ScalarPropertyNameAttribute); 4168string version = m_parentLoader.GetAliasResolvedAttributeValue(nav.Clone(), StorageMslConstructs.ParameterVersionAttribute); 4347string functionName = m_parentLoader.GetAliasResolvedAttributeValue(nav.Clone(), StorageMslConstructs.FunctionNameAttribute);
System\Data\Metadata\Helper.cs (2)
53nav = nav.Clone(); 75nav = nav.Clone();
System.Data.SqlXml (32)
System\Xml\Xsl\Runtime\ContentIterators.cs (1)
190this.navStack.Push(context.Clone());
System\Xml\Xsl\Runtime\DocumentOrderComparer.cs (1)
60navRoot = nav.Clone();
System\Xml\Xsl\Runtime\TreeIterators.cs (6)
248this.stack.Push(wrapped.Current.Clone()); 508this.stack.Push(this.navCurrent.Clone()); 512this.stack.Push(this.navCurrent.Clone()); 556this.stack.Push(wrapped.Current.Clone()); 637this.navStack.Push(this.navCurrent.Clone()); 761this.navStack.Push(this.navCurrent.Clone());
System\Xml\Xsl\Runtime\XmlQueryRuntime.cs (4)
842navRoot = context.Clone(); 874navRoot = context.Clone(); 994return navigatorThat.Clone(); 1015XPathNavigator nav = node.Clone();
System\Xml\Xsl\Runtime\XmlQuerySequence.cs (2)
438Add(((XPathNavigator) item).Clone()); 576Add(navigator.Clone());
System\Xml\Xsl\XsltOld\ActionFrame.cs (3)
146SortKey key = new SortKey(numSorts, /*originalPosition:*/results.Count, this.newNodeSet.Current.Clone()); 239XPathNavigator nav = this.nodeSet.Current.Clone(); 258XPathNavigator nav = this.newNodeSet.Current.Clone();
System\Xml\Xsl\XsltOld\Compiler.cs (1)
1143XPathNavigator nav = this.Input.Navigator.Clone();
System\Xml\Xsl\XsltOld\DbgCompiler.cs (1)
25this.styleSheet = dbgCompiler.Input.Navigator.Clone();
System\Xml\Xsl\XsltOld\NewInstructionAction.cs (1)
21XPathNavigator nav = compiler.Input.Navigator.Clone();
System\Xml\Xsl\XsltOld\NumberAction.cs (4)
219endNode = endNode.Clone(); 222XPathNavigator startNode = endNode.Clone(); 304XPathNavigator runner = nav.Clone(); 363XPathNavigator countNode = frame.Node.Clone(); // node we count for
System\Xml\Xsl\XsltOld\Processor.cs (3)
160return result.Clone(); 181documentCache[ruri] = result.Clone(); 851XPathNavigator clone = navigator.Clone();
System\Xml\Xsl\XsltOld\RootAction.cs (1)
231XPathNavigator root = processor.Document.Clone();
System\Xml\Xsl\XsltOld\XsltCompileContext.cs (4)
94node = node.Clone(); 295list.Add(value.Clone()); 419return new XPathSingletonIterator(nav.Clone()); 715XPathNavigator root = docContext.Clone();
System.ServiceModel (12)
System\ServiceModel\Dispatcher\QueryNode.cs (1)
1121this.nav = (SeekableXPathNavigator)this.data.seq[this.index].GetNavigator().Clone();
System\ServiceModel\Dispatcher\QuerySafeNavigator.cs (3)
159this.navigator = (SeekableXPathNavigator)nav.navigator.Clone(); 562this.navigator = navigator.navigator.Clone(); 905this.dom.nodes.Add(this.navigator.Clone());
System\ServiceModel\Dispatcher\XPathMessageContext.cs (8)
665return ExtractFromNavigator(docContext.Clone()); 728return ExtractFromNavigator(docContext.Clone()); 791return ExtractFromNavigator(docContext.Clone()); 942return ExtractFromNavigator(docContext.Clone()); 1006return ExtractFromNavigator(iter.Current.Clone()); 1068return ExtractFromNavigator(iter.Current.Clone()); 1132return ExtractFromNavigator(iter.Current.Clone()); 1206return ExtractFromNavigator(iter.Current.Clone());
System.Xml (90)
System\Xml\Core\XmlWriter.cs (1)
439navigator = navigator.Clone();
System\Xml\Core\XmlWriterAsync.cs (1)
391navigator = navigator.Clone();
System\Xml\Dom\DocumentXPathNavigator.cs (1)
1806internal DocumentXPathNodeIterator_Empty( DocumentXPathNodeIterator_Empty other ) { this.nav = other.nav.Clone(); }
System\Xml\XPath\Internal\AbsoluteQuery.cs (1)
20base.contextNode = context.Current.Clone();
System\Xml\XPath\Internal\AttributeQuery.cs (2)
35currentNode = currentNode.Clone(); 54XPathNavigator temp = context.Clone();
System\Xml\XPath\Internal\CacheChildrenQuery.cs (1)
125result = result.Clone();
System\Xml\XPath\Internal\ChildrenQuery.cs (1)
55XPathNavigator temp = context.Clone();
System\Xml\XPath\Internal\DescendantBaseQuery.cs (1)
40XPathNavigator anc = context.Clone();
System\Xml\XPath\Internal\DescendantoverDescendantQuery.cs (1)
44currentNode = currentNode.Clone();
System\Xml\XPath\Internal\FilterQuery.cs (2)
85XPathNavigator result = current.Clone(); 101XPathNavigator result = current.Clone();
System\Xml\XPath\Internal\FollowingQuery.cs (1)
38prev = input.Clone();
System\Xml\XPath\Internal\FollowingSibling.cs (3)
39XPathNavigator parent = nav.Clone(); 58return input.Clone(); 83nextInput = nextInput.Clone();
System\Xml\XPath\Internal\ForwardPositionQuery.cs (1)
26outputBuffer.Add(node.Clone());
System\Xml\XPath\Internal\IdQuery.cs (1)
23XPathNavigator contextNode = context.Current.Clone();
System\Xml\XPath\Internal\MergeFilterQuery.cs (1)
53Evaluate(new XPathSingletonIterator(context.Clone(), /*moved:*/true));
System\Xml\XPath\Internal\NamespaceQuery.cs (1)
36currentNode = currentNode.Clone();
System\Xml\XPath\Internal\ParentQuery.cs (1)
27input = input.Clone();
System\Xml\XPath\Internal\PrecedingQuery.cs (2)
52last = input.Clone(); 63ancestorStk.Push(last.Clone());
System\Xml\XPath\Internal\PrecedingSibling.cs (3)
34XPathNavigator nav1 = nav.Clone(); 52inputStk.Push(currentNode.Clone()); 60XPathNavigator prev = input.Clone();
System\Xml\XPath\Internal\Query.cs (6)
92return input.Clone(); 113buffer.Add(nav.Clone()); 135buffer.Insert(l, nav.Clone()); 147XPathNavigator copy = l.Clone(); 151copy = r.Clone(); 204last = curr.Clone();
System\Xml\XPath\Internal\SortQuery.cs (1)
55SortKey key = new SortKey(numSorts, /*originalPosition:*/this.results.Count, eNext.Clone());
System\Xml\XPath\Internal\XPathAncestorQuery.cs (1)
40ancestor = input.Clone();
System\Xml\XPath\Internal\XPathArrayIterator.cs (1)
34this.list.Add(nodeIterator.Current.Clone());
System\Xml\XPath\Internal\XPathAxisIterator.cs (1)
42this.nav = it.nav.Clone();
System\Xml\XPath\Internal\XPathSelectionIterator.cs (3)
24this.nav = nav.Clone(); 29this.nav = it.nav.Clone(); 43 nav = n.Clone();
System\Xml\XPath\Internal\XPathSingletonIterator.cs (1)
31this.nav = it.nav.Clone();
System\Xml\XPath\XPathNavigator.cs (35)
342return Clone(); 350return Clone(); 364XPathNavigator navSave = Clone(); 391XPathNavigator navClone = Clone(); 426XPathNavigator navSave = Clone(); 486XPathNavigator navClone = Clone(); 662XPathNavigator navSave = Clone(); 670end = end.Clone(); 719XPathNavigator navSave = Clone(); 728end = end.Clone(); 771XPathNavigator navClone = Clone(); 782XPathNavigator navClone = Clone(); 808nav = nav.Clone(); 824XPathNavigator n1 = this.Clone(); 825XPathNavigator n2 = nav.Clone(); 827int depth1 = GetDepth( n1.Clone() ); 828int depth2 = GetDepth( n2.Clone() ); 848XPathNavigator parent1 = n1.Clone(); 849XPathNavigator parent2 = n2.Clone(); 857Debug.Assert( CompareSiblings(n1.Clone(), n2.Clone()) != CompareSiblings(n2.Clone(), n1.Clone()), "IsSamePosition() on custom navigator returns incosistent results" ); 1046context = new XPathSingletonIterator(this.Clone(), /*moved:*/true); 1081return new XPathChildIterator( this.Clone(), type ); 1085return new XPathChildIterator( this.Clone(), name, namespaceURI ); 1089return new XPathAncestorIterator( this.Clone(), type, matchSelf ); 1093return new XPathAncestorIterator( this.Clone(), name, namespaceURI, matchSelf ); 1097return new XPathDescendantIterator( this.Clone(), type, matchSelf ); 1101return new XPathDescendantIterator( this.Clone(), name, namespaceURI, matchSelf ); 1432XPathNavigator navClone = Clone(); 1445XPathNavigator navClone = Clone(); 1467XPathNavigator navSave = Clone(); 1499XPathNavigator nav = this.Clone(); 1552XPathNavigator nav = this.Clone();
System\Xml\XPath\XPathNavigatorReader.cs (14)
77XPathNavigator nav = navToRead.Clone(); 233XPathNavigator tempNav = this.nav.Clone(); 284return this.nav.Clone(); 287tempNav = this.nav.Clone(); 305nav = this.nav.Clone(); 309nav = this.nav.Clone(); 314nav = this.nav.Clone(); 369nav = nav.Clone(); 382nav = nav.Clone(); 390nav = nav.Clone(); 410nav = nav.Clone(); 429nav = nav.Clone(); 555XPathNavigator nav = this.nav.Clone(); 570XPathNavigator prev = nav.Clone();
System\Xml\XPath\XPathNodeIterator.cs (1)
61return this.current.Current.Clone();