Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / untmp / whidbey / QFE / ndp / fx / src / Xml / System / Xml / XPath / Internal / followingsibling.cs / 1 / 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. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- DropSourceBehavior.cs
- ParenExpr.cs
- CommandField.cs
- ServiceOperationViewControl.cs
- Variable.cs
- X509CertificateValidationMode.cs
- TraceContextRecord.cs
- SqlTransaction.cs
- SQLInt32.cs
- ReadOnlyCollectionBase.cs
- BaseTemplateParser.cs
- ErrorLog.cs
- ContainerUtilities.cs
- SynchronizedDispatch.cs
- SqlMetaData.cs
- CodeSubDirectory.cs
- MarkerProperties.cs
- XmlExtensionFunction.cs
- WsdlBuildProvider.cs
- QuerySelectOp.cs
- MimeTypeMapper.cs
- StyleCollectionEditor.cs
- PackageProperties.cs
- TableRowCollection.cs
- TemplatedMailWebEventProvider.cs
- RectAnimation.cs
- WebPartMovingEventArgs.cs
- CategoryAttribute.cs
- ParsedAttributeCollection.cs
- StrongNameUtility.cs
- Input.cs
- oledbmetadatacolumnnames.cs
- SystemColors.cs
- SapiAttributeParser.cs
- ByteStream.cs
- UnconditionalPolicy.cs
- QilTargetType.cs
- AsyncSerializedWorker.cs
- BlockExpression.cs
- SelectionProcessor.cs
- BamlRecordReader.cs
- Setter.cs
- PointAnimation.cs
- ConditionCollection.cs
- Panel.cs
- ToolboxComponentsCreatingEventArgs.cs
- QualificationDataAttribute.cs
- OutKeywords.cs
- ServiceModelInstallComponent.cs
- Expressions.cs
- LocatorManager.cs
- TextRangeEditLists.cs
- EntityTypeBase.cs
- Typeface.cs
- HtmlHead.cs
- NonParentingControl.cs
- SoapSchemaExporter.cs
- ProtectedConfiguration.cs
- PickBranchDesigner.xaml.cs
- ObjectDataSourceChooseMethodsPanel.cs
- ParameterCollection.cs
- ExpandoObject.cs
- ConfigurationSettings.cs
- OneToOneMappingSerializer.cs
- ScaleTransform.cs
- MessageDispatch.cs
- OperationSelectorBehavior.cs
- DataTablePropertyDescriptor.cs
- ProxyRpc.cs
- RuleSetDialog.Designer.cs
- ClipboardProcessor.cs
- ISAPIRuntime.cs
- DrawToolTipEventArgs.cs
- DiscreteKeyFrames.cs
- NativeRightsManagementAPIsStructures.cs
- CodeEventReferenceExpression.cs
- ReferencedAssembly.cs
- WindowsFormsSectionHandler.cs
- DocumentPaginator.cs
- HttpCookiesSection.cs
- odbcmetadatacolumnnames.cs
- ClientOptions.cs
- NativeMethods.cs
- CustomLineCap.cs
- XmlSchemaAnnotation.cs
- WebSysDescriptionAttribute.cs
- EtwTrace.cs
- ListenerElementsCollection.cs
- DrawingCollection.cs
- HwndHostAutomationPeer.cs
- LockedActivityGlyph.cs
- ReliabilityContractAttribute.cs
- SafeReversePInvokeHandle.cs
- FamilyTypefaceCollection.cs
- ProxyGenerationError.cs
- SoapBinding.cs
- UnsafeNativeMethods.cs
- ItemCheckedEvent.cs
- ScrollableControl.cs
- Formatter.cs