Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / ndp / fx / src / Xml / System / Xml / XPath / Internal / followingquery.cs / 1 / followingquery.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //----------------------------------------------------------------------------- namespace MS.Internal.Xml.XPath { using System; using System.Xml; using System.Xml.XPath; using System.Diagnostics; internal sealed class FollowingQuery : BaseAxisQuery { private XPathNavigator input; private XPathNodeIterator iterator; public FollowingQuery(Query qyInput, string name, string prefix, XPathNodeType typeTest) : base(qyInput, name, prefix, typeTest) {} private FollowingQuery(FollowingQuery other) : base(other) { this.input = Clone(other.input); this.iterator = Clone(other.iterator); } public override void Reset() { iterator = null; base.Reset(); } public override XPathNavigator Advance() { if (iterator == null) { input = qyInput.Advance(); if (input == null) { return null; } XPathNavigator prev; do { prev = input.Clone(); input = qyInput.Advance(); } while (prev.IsDescendant(input)); input = prev; iterator = XPathEmptyIterator.Instance; } while (! iterator.MoveNext()) { bool matchSelf; if (input.NodeType == XPathNodeType.Attribute || input.NodeType == XPathNodeType.Namespace) { input.MoveToParent(); matchSelf = false; } else { while (! input.MoveToNext()) { if (! input.MoveToParent()) { return null; } } matchSelf = true; } if (NameTest) { iterator = input.SelectDescendants(Name, Namespace, matchSelf); } else { iterator = input.SelectDescendants(TypeTest, matchSelf); } } position++; currentNode = iterator.Current; return currentNode; } public override XPathNodeIterator Clone() { return new FollowingQuery(this); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //----------------------------------------------------------------------------- namespace MS.Internal.Xml.XPath { using System; using System.Xml; using System.Xml.XPath; using System.Diagnostics; internal sealed class FollowingQuery : BaseAxisQuery { private XPathNavigator input; private XPathNodeIterator iterator; public FollowingQuery(Query qyInput, string name, string prefix, XPathNodeType typeTest) : base(qyInput, name, prefix, typeTest) {} private FollowingQuery(FollowingQuery other) : base(other) { this.input = Clone(other.input); this.iterator = Clone(other.iterator); } public override void Reset() { iterator = null; base.Reset(); } public override XPathNavigator Advance() { if (iterator == null) { input = qyInput.Advance(); if (input == null) { return null; } XPathNavigator prev; do { prev = input.Clone(); input = qyInput.Advance(); } while (prev.IsDescendant(input)); input = prev; iterator = XPathEmptyIterator.Instance; } while (! iterator.MoveNext()) { bool matchSelf; if (input.NodeType == XPathNodeType.Attribute || input.NodeType == XPathNodeType.Namespace) { input.MoveToParent(); matchSelf = false; } else { while (! input.MoveToNext()) { if (! input.MoveToParent()) { return null; } } matchSelf = true; } if (NameTest) { iterator = input.SelectDescendants(Name, Namespace, matchSelf); } else { iterator = input.SelectDescendants(TypeTest, matchSelf); } } position++; currentNode = iterator.Current; return currentNode; } public override XPathNodeIterator Clone() { return new FollowingQuery(this); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- Metadata.cs
- Stroke.cs
- Trace.cs
- UnicodeEncoding.cs
- GridViewRow.cs
- Constants.cs
- DefaultAsyncDataDispatcher.cs
- ScriptBehaviorDescriptor.cs
- ComponentRenameEvent.cs
- RequestQueue.cs
- Point3DAnimation.cs
- ProtocolViolationException.cs
- Parser.cs
- _CacheStreams.cs
- CodeDOMProvider.cs
- SqlInfoMessageEvent.cs
- SystemResources.cs
- WebPartMinimizeVerb.cs
- ToolStripItemDataObject.cs
- ArcSegment.cs
- DataRecordInternal.cs
- RoleManagerModule.cs
- SessionStateModule.cs
- DocumentXPathNavigator.cs
- ApplicationInterop.cs
- XDeferredAxisSource.cs
- IApplicationTrustManager.cs
- ActiveXSite.cs
- SemaphoreFullException.cs
- SmtpSpecifiedPickupDirectoryElement.cs
- UmAlQuraCalendar.cs
- DescendentsWalkerBase.cs
- UriTemplateTableMatchCandidate.cs
- SignatureToken.cs
- ScalarOps.cs
- TimeZone.cs
- DynamicDocumentPaginator.cs
- QueryServiceConfigHandle.cs
- NavigationProperty.cs
- MethodSet.cs
- SafeSecurityHelper.cs
- MatrixConverter.cs
- HybridDictionary.cs
- XmlReaderDelegator.cs
- CharStorage.cs
- DataSourceCacheDurationConverter.cs
- OdbcParameterCollection.cs
- MetadataArtifactLoaderXmlReaderWrapper.cs
- SignalGate.cs
- BoolLiteral.cs
- _NegoState.cs
- BamlRecordWriter.cs
- AppSettingsExpressionBuilder.cs
- DispatcherHooks.cs
- ImageListDesigner.cs
- PriorityQueue.cs
- ComContractElementCollection.cs
- clipboard.cs
- SmtpFailedRecipientException.cs
- IdentitySection.cs
- SettingsProperty.cs
- TemplateColumn.cs
- SizeValueSerializer.cs
- CalendarDay.cs
- AccessViolationException.cs
- XPathScanner.cs
- AuthenticationModulesSection.cs
- CatalogPartCollection.cs
- BufferedWebEventProvider.cs
- SafeNativeMethods.cs
- ArithmeticException.cs
- Int32RectConverter.cs
- UIElementHelper.cs
- Authorization.cs
- HtmlInputRadioButton.cs
- DockingAttribute.cs
- XPathBinder.cs
- XhtmlCssHandler.cs
- ListViewItemEventArgs.cs
- StatusBarPanel.cs
- XmlArrayAttribute.cs
- Double.cs
- SimpleModelProvider.cs
- DataGrid.cs
- AutomationProperty.cs
- CqlParser.cs
- Model3DCollection.cs
- Int64AnimationUsingKeyFrames.cs
- HeaderElement.cs
- PersistenceException.cs
- Calendar.cs
- JsonGlobals.cs
- ProfileSection.cs
- AsyncOperationManager.cs
- SqlTypesSchemaImporter.cs
- Events.cs
- BookmarkEventArgs.cs
- CryptographicAttribute.cs
- BreakRecordTable.cs
- Bidi.cs