Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / untmp / whidbey / QFE / ndp / fx / src / Xml / System / Xml / XPath / Internal / XPathAncestorQuery.cs / 1 / XPathAncestorQuery.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; internal sealed class XPathAncestorQuery : CacheAxisQuery { private bool matchSelf; public XPathAncestorQuery(Query qyInput, string name, string prefix, XPathNodeType typeTest, bool matchSelf) : base(qyInput, name, prefix, typeTest) { this.matchSelf = matchSelf; } private XPathAncestorQuery(XPathAncestorQuery other) : base(other) { this.matchSelf = other.matchSelf; } public override object Evaluate(XPathNodeIterator context) { base.Evaluate(context); XPathNavigator ancestor = null; XPathNavigator input; while ((input = qyInput.Advance()) != null) { if (matchSelf) { if (matches(input)) { if (!Insert(outputBuffer, input)) { // If input is already in output buffer all its ancestors are in a buffer as well. continue; } } } if (ancestor == null || ! ancestor.MoveTo(input)) { ancestor = input.Clone(); } while (ancestor.MoveToParent()) { if (matches(ancestor)) { if (!Insert(outputBuffer, ancestor)) { // If input is already in output buffer all its ancestors are in a buffer as well. break; } } } } return this; } public override XPathNodeIterator Clone() { return new XPathAncestorQuery(this); } public override int CurrentPosition { get { return outputBuffer.Count - count + 1; } } public override QueryProps Properties { get { return base.Properties | QueryProps.Reverse; } } public override void PrintQuery(XmlWriter w) { w.WriteStartElement(this.GetType().Name); if (matchSelf) { w.WriteAttributeString("self", "yes"); } if (NameTest) { w.WriteAttributeString("name", Prefix.Length != 0 ? Prefix + ':' + Name : Name); } if (TypeTest != XPathNodeType.Element) { w.WriteAttributeString("nodeType", TypeTest.ToString()); } qyInput.PrintQuery(w); w.WriteEndElement(); } } } // 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
- PriorityRange.cs
- ExceptionUtil.cs
- Timer.cs
- MenuCommand.cs
- ObjectDataSourceView.cs
- CroppedBitmap.cs
- InheritanceContextChangedEventManager.cs
- XmlSchemaType.cs
- AppendHelper.cs
- ReflectEventDescriptor.cs
- ContainsRowNumberChecker.cs
- SkipStoryboardToFill.cs
- XdrBuilder.cs
- DataTableTypeConverter.cs
- DrawingContext.cs
- ToolStripManager.cs
- OSEnvironmentHelper.cs
- XmlIterators.cs
- XPathNode.cs
- LicenseException.cs
- ToolStripSplitStackLayout.cs
- BuildProvider.cs
- LabelAutomationPeer.cs
- DrawingContextDrawingContextWalker.cs
- Pair.cs
- ResourcePool.cs
- TextDocumentView.cs
- DataBinder.cs
- AmbientLight.cs
- ISAPIWorkerRequest.cs
- SspiNegotiationTokenProvider.cs
- ListViewItem.cs
- DnsPermission.cs
- DirectoryObjectSecurity.cs
- DataGridViewColumnConverter.cs
- ExtendedPropertiesHandler.cs
- ToolBarButton.cs
- DataSetSchema.cs
- RoutedEvent.cs
- Opcode.cs
- CodeMethodInvokeExpression.cs
- BasicKeyConstraint.cs
- HttpProfileBase.cs
- TextBoxDesigner.cs
- IdleTimeoutMonitor.cs
- TypeUnloadedException.cs
- MtomMessageEncodingBindingElement.cs
- QueryComponents.cs
- CallbackHandler.cs
- RemoteWebConfigurationHostStream.cs
- PocoPropertyAccessorStrategy.cs
- FormatterServices.cs
- ScriptMethodAttribute.cs
- ConfigXmlWhitespace.cs
- MessageQuerySet.cs
- DataGridTable.cs
- MultiAsyncResult.cs
- _NativeSSPI.cs
- RequiredAttributeAttribute.cs
- ListControl.cs
- ConfigUtil.cs
- Span.cs
- DocumentOrderComparer.cs
- ZipIOZip64EndOfCentralDirectoryBlock.cs
- FixedTextContainer.cs
- ViewSimplifier.cs
- RijndaelManagedTransform.cs
- InstanceLockedException.cs
- FixedTextSelectionProcessor.cs
- WebZone.cs
- GlobalProxySelection.cs
- CategoryNameCollection.cs
- DbException.cs
- UnconditionalPolicy.cs
- DesignTimeParseData.cs
- CustomSignedXml.cs
- StrongNameMembershipCondition.cs
- CodeDelegateCreateExpression.cs
- FileSystemInfo.cs
- FormsAuthenticationConfiguration.cs
- CapabilitiesSection.cs
- DBDataPermission.cs
- RegexMatch.cs
- SpellerHighlightLayer.cs
- ObjectDataSourceStatusEventArgs.cs
- EdmRelationshipRoleAttribute.cs
- ScaleTransform3D.cs
- CompilerErrorCollection.cs
- ToolStripSystemRenderer.cs
- Adorner.cs
- ProcessModelInfo.cs
- ArrayHelper.cs
- EndOfStreamException.cs
- SiteOfOriginPart.cs
- DateRangeEvent.cs
- UserControlAutomationPeer.cs
- LookupNode.cs
- DataGridViewCellConverter.cs
- GradientSpreadMethodValidation.cs
- CriticalFinalizerObject.cs