Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / 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
- ByteFacetDescriptionElement.cs
- TreeNodeBindingCollection.cs
- SafeMILHandle.cs
- HttpInputStream.cs
- _AuthenticationState.cs
- GlyphInfoList.cs
- WebConfigurationHostFileChange.cs
- LinqDataSourceDisposeEventArgs.cs
- FontEditor.cs
- MembershipUser.cs
- prompt.cs
- DetailsViewDeleteEventArgs.cs
- RewritingSimplifier.cs
- FrameSecurityDescriptor.cs
- ProcessModule.cs
- HandlerBase.cs
- ParseHttpDate.cs
- SaveFileDialog.cs
- LinearQuaternionKeyFrame.cs
- RenderDataDrawingContext.cs
- WebAdminConfigurationHelper.cs
- SqlDataAdapter.cs
- XmlElementAttributes.cs
- Int32EqualityComparer.cs
- MonikerHelper.cs
- TemplateBuilder.cs
- OrCondition.cs
- PropertyGridView.cs
- Automation.cs
- DataPagerFieldCommandEventArgs.cs
- AttributeCollection.cs
- PresentationTraceSources.cs
- FontStyleConverter.cs
- BamlStream.cs
- PropertyGroupDescription.cs
- MenuBase.cs
- PerfProviderCollection.cs
- EllipseGeometry.cs
- UIAgentMonitor.cs
- Process.cs
- HwndKeyboardInputProvider.cs
- EventWaitHandle.cs
- TouchesOverProperty.cs
- SID.cs
- XmlDocumentFragment.cs
- VectorAnimation.cs
- QilReplaceVisitor.cs
- CompositeActivityTypeDescriptor.cs
- FixedHyperLink.cs
- ContentPosition.cs
- SingleSelectRootGridEntry.cs
- ConfigurationHandlersInstallComponent.cs
- AnnotationMap.cs
- TypeConverterHelper.cs
- DocumentGrid.cs
- latinshape.cs
- PublisherIdentityPermission.cs
- _AutoWebProxyScriptEngine.cs
- UrlMapping.cs
- FieldToken.cs
- LiteralDesigner.cs
- GZipStream.cs
- FrameworkContentElementAutomationPeer.cs
- PartBasedPackageProperties.cs
- WrappedReader.cs
- XmlBoundElement.cs
- SerialErrors.cs
- ProcessThread.cs
- GenerateScriptTypeAttribute.cs
- CompiledQueryCacheEntry.cs
- NumericUpDown.cs
- ConnectionPointCookie.cs
- CounterSample.cs
- ChannelSinkStacks.cs
- Adorner.cs
- CalendarDay.cs
- MethodToken.cs
- ManifestBasedResourceGroveler.cs
- SelectionPattern.cs
- SafeReversePInvokeHandle.cs
- XsltFunctions.cs
- VirtualPathData.cs
- Pkcs7Signer.cs
- TextEncodedRawTextWriter.cs
- DbDeleteCommandTree.cs
- ListMarkerLine.cs
- CollectionChangedEventManager.cs
- Dynamic.cs
- XdrBuilder.cs
- SubMenuStyle.cs
- XmlComplianceUtil.cs
- QueueAccessMode.cs
- Object.cs
- CompoundFileIOPermission.cs
- Journaling.cs
- WindowsAuthenticationModule.cs
- CellConstantDomain.cs
- RangeValueProviderWrapper.cs
- CommandBindingCollection.cs
- ButtonFlatAdapter.cs