Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / 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. // //[....] //----------------------------------------------------------------------------- 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- GlobalEventManager.cs
- XPathDocumentIterator.cs
- UnsafeNativeMethodsCLR.cs
- HighlightVisual.cs
- RoleService.cs
- HtmlMeta.cs
- ScrollItemProviderWrapper.cs
- URLAttribute.cs
- CodeExpressionCollection.cs
- SqlPersistenceWorkflowInstanceDescription.cs
- ColorAnimationBase.cs
- StylusPointProperties.cs
- DataServiceRequestException.cs
- DispatchChannelSink.cs
- RootBrowserWindowAutomationPeer.cs
- EdmProviderManifest.cs
- GenericArgumentsUpdater.cs
- CompositeFontFamily.cs
- XmlCompatibilityReader.cs
- DesignParameter.cs
- SamlAssertionKeyIdentifierClause.cs
- SpoolingTask.cs
- WebPartZoneBase.cs
- SectionInformation.cs
- Container.cs
- FixedNode.cs
- AccessedThroughPropertyAttribute.cs
- UIElement.cs
- Point3DCollection.cs
- WebPartTransformerCollection.cs
- TitleStyle.cs
- TraceUtility.cs
- MarkedHighlightComponent.cs
- DataPagerFieldCollection.cs
- LayoutManager.cs
- OleAutBinder.cs
- AssemblyBuilder.cs
- StackBuilderSink.cs
- Serializer.cs
- CodeDirectionExpression.cs
- ChangeDirector.cs
- ConfigXmlWhitespace.cs
- ProfilePropertySettingsCollection.cs
- ColorBlend.cs
- XPathDocumentBuilder.cs
- HMAC.cs
- KeyValueConfigurationElement.cs
- TableColumn.cs
- DataContractJsonSerializer.cs
- ValidatorUtils.cs
- AssemblyAttributes.cs
- LocalBuilder.cs
- BindingExpression.cs
- WorkflowMessageEventHandler.cs
- __ConsoleStream.cs
- OleDbTransaction.cs
- dtdvalidator.cs
- CommandField.cs
- safex509handles.cs
- SmiEventSink_Default.cs
- IteratorFilter.cs
- SafeNativeMethodsCLR.cs
- NestedContainer.cs
- AppDomainAttributes.cs
- StateDesigner.Layouts.cs
- InputBindingCollection.cs
- ModelVisual3D.cs
- securitycriticaldataClass.cs
- TextServicesDisplayAttribute.cs
- SqlPersonalizationProvider.cs
- ConditionalAttribute.cs
- KeyboardDevice.cs
- SynchronizationContext.cs
- GPPOINTF.cs
- TypeDescriptionProviderAttribute.cs
- IdleTimeoutMonitor.cs
- TaiwanLunisolarCalendar.cs
- CorruptingExceptionCommon.cs
- DataRelationCollection.cs
- InfoCardTrace.cs
- ResolvedKeyFrameEntry.cs
- TimerExtension.cs
- MergeFilterQuery.cs
- RelationshipConverter.cs
- ResolvedKeyFrameEntry.cs
- SqlConnection.cs
- ScanQueryOperator.cs
- BamlRecordWriter.cs
- VersionConverter.cs
- UnsafeNativeMethods.cs
- SQLGuidStorage.cs
- Pointer.cs
- NetworkCredential.cs
- TCPClient.cs
- EditingCoordinator.cs
- WebServiceClientProxyGenerator.cs
- PageClientProxyGenerator.cs
- CodeCatchClauseCollection.cs
- StylusButtonEventArgs.cs
- SplineQuaternionKeyFrame.cs