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
- DataViewManager.cs
- NativeMethods.cs
- SharedRuntimeState.cs
- AutomationIdentifier.cs
- SqlFormatter.cs
- PartialArray.cs
- GiveFeedbackEvent.cs
- StringDictionary.cs
- ExtendedProperty.cs
- ReversePositionQuery.cs
- IChannel.cs
- OperationPickerDialog.cs
- JoinTreeNode.cs
- DBSqlParserTableCollection.cs
- PasswordRecoveryDesigner.cs
- HtmlElementEventArgs.cs
- FileClassifier.cs
- DocumentApplicationJournalEntry.cs
- CustomAttribute.cs
- TypedColumnHandler.cs
- ImageClickEventArgs.cs
- AsyncStreamReader.cs
- ZoneLinkButton.cs
- SessionEndingCancelEventArgs.cs
- MouseButton.cs
- UserPersonalizationStateInfo.cs
- Rotation3DKeyFrameCollection.cs
- ProfileSettings.cs
- SequentialActivityDesigner.cs
- ClientConfigurationSystem.cs
- CommentEmitter.cs
- ChangeInterceptorAttribute.cs
- SynchronizedDispatch.cs
- XamlHttpHandlerFactory.cs
- RelatedImageListAttribute.cs
- Executor.cs
- PagesSection.cs
- _SSPISessionCache.cs
- TraceLog.cs
- UnmanagedMemoryStream.cs
- DataExpression.cs
- BasicCellRelation.cs
- ElapsedEventArgs.cs
- UrlMapping.cs
- LockedAssemblyCache.cs
- ManipulationDelta.cs
- UnsafeNativeMethodsCLR.cs
- Primitive.cs
- WhitespaceReader.cs
- AnnotationDocumentPaginator.cs
- RelationHandler.cs
- HostedHttpTransportManager.cs
- UserInitiatedRoutedEventPermissionAttribute.cs
- DictionarySectionHandler.cs
- WebResourceAttribute.cs
- DockEditor.cs
- APCustomTypeDescriptor.cs
- AvTraceDetails.cs
- TrustVersion.cs
- DataBinder.cs
- ReadOnlyHierarchicalDataSource.cs
- TheQuery.cs
- UriTemplateClientFormatter.cs
- HMACSHA1.cs
- EdmError.cs
- Fonts.cs
- smtppermission.cs
- WebRequestModulesSection.cs
- ProtocolsConfigurationHandler.cs
- DateTimeValueSerializerContext.cs
- BamlLocalizerErrorNotifyEventArgs.cs
- prompt.cs
- FrameDimension.cs
- PartBasedPackageProperties.cs
- ProfilePropertySettings.cs
- ZipIOFileItemStream.cs
- DatePickerAutomationPeer.cs
- AffineTransform3D.cs
- EpmContentSerializerBase.cs
- UxThemeWrapper.cs
- HttpSessionStateWrapper.cs
- OdbcFactory.cs
- HostSecurityManager.cs
- XmlSchemaSimpleTypeList.cs
- PathFigureCollectionConverter.cs
- SrgsDocument.cs
- ScrollData.cs
- UrlMappingCollection.cs
- CultureInfo.cs
- Annotation.cs
- MatrixTransform3D.cs
- GetPageCompletedEventArgs.cs
- MemberAccessException.cs
- ClipboardProcessor.cs
- WindowsAuthenticationEventArgs.cs
- Win32KeyboardDevice.cs
- SortedDictionary.cs
- Faults.cs
- BufferedGraphicsContext.cs
- ViewPort3D.cs