Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Xml / System / Xml / XPath / Internal / XPathAncestorQuery.cs / 1305376 / 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- UdpMessageProperty.cs
- Dispatcher.cs
- MetadataItem.cs
- KernelTypeValidation.cs
- DropShadowEffect.cs
- IODescriptionAttribute.cs
- RepeaterItemCollection.cs
- AppDomainUnloadedException.cs
- AsyncWaitHandle.cs
- CounterCreationDataCollection.cs
- HttpConfigurationContext.cs
- XslVisitor.cs
- VerificationAttribute.cs
- MessageBox.cs
- AuthenticationServiceManager.cs
- ResourceBinder.cs
- Vertex.cs
- ServiceProviders.cs
- ObjectDataSourceDisposingEventArgs.cs
- PerformanceCounters.cs
- StateRuntime.cs
- AppDomainGrammarProxy.cs
- InstancePersistenceCommand.cs
- StateManagedCollection.cs
- DataViewSettingCollection.cs
- BufferAllocator.cs
- DataContext.cs
- MessagePartProtectionMode.cs
- ServiceManager.cs
- NotifyParentPropertyAttribute.cs
- GeometryModel3D.cs
- DataGridrowEditEndingEventArgs.cs
- LinkLabelLinkClickedEvent.cs
- ActivityXRefPropertyEditor.cs
- WeakReferenceKey.cs
- XmlTypeMapping.cs
- ImageListUtils.cs
- PreProcessor.cs
- IdentifierCollection.cs
- UndoManager.cs
- _emptywebproxy.cs
- PackagePart.cs
- WindowsFormsDesignerOptionService.cs
- CompositeDataBoundControl.cs
- MemoryMappedFile.cs
- XmlSchemaComplexType.cs
- SourceChangedEventArgs.cs
- MouseEventArgs.cs
- CustomPopupPlacement.cs
- HierarchicalDataBoundControl.cs
- HandlerFactoryWrapper.cs
- LinkConverter.cs
- BulletDecorator.cs
- BevelBitmapEffect.cs
- ExpandCollapseProviderWrapper.cs
- TdsRecordBufferSetter.cs
- CommonProperties.cs
- SystemWebExtensionsSectionGroup.cs
- IPAddressCollection.cs
- SqlDataSourceCache.cs
- SqlBuffer.cs
- DataGridViewAutoSizeModeEventArgs.cs
- DeobfuscatingStream.cs
- AsmxEndpointPickerExtension.cs
- CharacterBuffer.cs
- PingOptions.cs
- ConfigurationProperty.cs
- Select.cs
- WorkflowMarkupSerializerMapping.cs
- WebEncodingValidatorAttribute.cs
- DataGridViewCell.cs
- PointAnimationUsingPath.cs
- RadioButtonList.cs
- DbExpressionVisitor.cs
- TabPanel.cs
- Variable.cs
- WorkflowServiceAttributesTypeConverter.cs
- ContextMenuStripGroupCollection.cs
- VectorCollectionConverter.cs
- XmlHierarchicalDataSourceView.cs
- DataComponentMethodGenerator.cs
- CapabilitiesUse.cs
- MaterialGroup.cs
- SizeF.cs
- Parser.cs
- ACE.cs
- HtmlInputSubmit.cs
- PagesChangedEventArgs.cs
- HyperLinkColumn.cs
- OpenFileDialog.cs
- TabPanel.cs
- PersonalizableTypeEntry.cs
- CornerRadius.cs
- EndPoint.cs
- TimeSpanStorage.cs
- BuildResult.cs
- RowToParametersTransformer.cs
- SQLUtility.cs
- DispatchChannelSink.cs
- ListControl.cs