Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Xml / System / Xml / XPath / Internal / followingsibling.cs / 1305376 / followingsibling.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; using System.Collections.Generic; using StackNav = ClonableStack; internal sealed class FollSiblingQuery : BaseAxisQuery { StackNav elementStk; List parentStk; XPathNavigator nextInput; public FollSiblingQuery(Query qyInput, string name, string prefix, XPathNodeType type) : base (qyInput, name, prefix, type) { this.elementStk = new StackNav(); this.parentStk = new List (); } private FollSiblingQuery(FollSiblingQuery other) : base(other) { this.elementStk = other.elementStk.Clone(); this.parentStk = new List (other.parentStk); this.nextInput = Clone(other.nextInput); } public override void Reset() { elementStk.Clear(); parentStk.Clear(); nextInput = null; base.Reset(); } private bool Visited(XPathNavigator nav) { XPathNavigator parent = nav.Clone(); parent.MoveToParent(); for (int i = 0; i < parentStk.Count; i++) { if (parent.IsSamePosition(parentStk[i])) { return true; } } parentStk.Add(parent); return false; } private XPathNavigator FetchInput() { XPathNavigator input; do { input = qyInput.Advance(); if (input == null) { return null; } } while (Visited(input)); return input.Clone(); } public override XPathNavigator Advance() { while (true) { if (currentNode == null) { if (nextInput == null) { nextInput = FetchInput(); // This can happen at the begining and at the end } if (elementStk.Count == 0) { if (nextInput == null) { return null; } currentNode = nextInput; nextInput = FetchInput(); } else { currentNode = elementStk.Pop(); } } while (currentNode.IsDescendant(nextInput)) { elementStk.Push(currentNode); currentNode = nextInput; nextInput = qyInput.Advance(); if (nextInput != null) { nextInput = nextInput.Clone(); } } while (currentNode.MoveToNext()) { if (matches(currentNode)) { position++; return currentNode; } } currentNode = null; } } // Advance public override XPathNodeIterator Clone() { return new FollSiblingQuery(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
- ContentType.cs
- ProtectedConfigurationSection.cs
- DeferrableContentConverter.cs
- StylusPointProperties.cs
- HandlerWithFactory.cs
- IERequestCache.cs
- WorkflowRuntime.cs
- DefaultValueConverter.cs
- BitmapSource.cs
- SqlLiftWhereClauses.cs
- SerializationAttributes.cs
- StructuredTypeEmitter.cs
- WinCategoryAttribute.cs
- BaseParser.cs
- Speller.cs
- XmlSchemaImport.cs
- ValidationErrorEventArgs.cs
- HtmlImage.cs
- ProcessModelSection.cs
- EndPoint.cs
- PageSettings.cs
- ComPlusInstanceContextInitializer.cs
- AuthenticationException.cs
- coordinatorscratchpad.cs
- SpellerStatusTable.cs
- DockEditor.cs
- XslAstAnalyzer.cs
- HtmlForm.cs
- FamilyTypefaceCollection.cs
- ConstructorNeedsTagAttribute.cs
- RadioButton.cs
- Material.cs
- DesignerForm.cs
- COSERVERINFO.cs
- XmlSchemaComplexType.cs
- Marshal.cs
- CodeGotoStatement.cs
- ContextMenuStripGroupCollection.cs
- HMACMD5.cs
- ImageMap.cs
- ProtocolElementCollection.cs
- MailAddress.cs
- ButtonBase.cs
- ListViewSortEventArgs.cs
- InfoCardRSAPKCS1SignatureDeformatter.cs
- ObjectHandle.cs
- AssociationType.cs
- EntitySqlQueryCacheKey.cs
- HttpHeaderCollection.cs
- XmlRawWriterWrapper.cs
- EditorServiceContext.cs
- oledbmetadatacolumnnames.cs
- WindowsRichEditRange.cs
- IPHostEntry.cs
- CalloutQueueItem.cs
- MemberCollection.cs
- WindowsTokenRoleProvider.cs
- Crc32.cs
- GridViewCancelEditEventArgs.cs
- ExtensionQuery.cs
- HwndKeyboardInputProvider.cs
- ObjectSecurity.cs
- MenuItem.cs
- RectangleGeometry.cs
- ValidatedControlConverter.cs
- CodeThrowExceptionStatement.cs
- UnauthorizedWebPart.cs
- PixelShader.cs
- ColorConvertedBitmap.cs
- XmlILIndex.cs
- IISMapPath.cs
- PropertyInformation.cs
- RemotingAttributes.cs
- updateconfighost.cs
- PointKeyFrameCollection.cs
- SqlFunctionAttribute.cs
- Verify.cs
- LinkedList.cs
- DataObjectSettingDataEventArgs.cs
- ServiceProviders.cs
- Matrix3D.cs
- PanelStyle.cs
- TiffBitmapDecoder.cs
- NamespaceTable.cs
- GeometryGroup.cs
- Pool.cs
- ButtonBaseAdapter.cs
- MarkupProperty.cs
- NumberFormatInfo.cs
- ChannelSinkStacks.cs
- MarkupCompilePass1.cs
- HttpUnhandledOperationInvoker.cs
- ECDsaCng.cs
- LocationSectionRecord.cs
- IBuiltInEvidence.cs
- EncodingDataItem.cs
- ResponseStream.cs
- SiteIdentityPermission.cs
- WorkflowStateRollbackService.cs
- LoginCancelEventArgs.cs