Code:
/ DotNET / DotNET / 8.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
- MethodCallExpression.cs
- CryptoHandle.cs
- HttpConfigurationSystem.cs
- EmptyControlCollection.cs
- BaseInfoTable.cs
- HwndSourceParameters.cs
- HttpCapabilitiesBase.cs
- MatchingStyle.cs
- CriticalExceptions.cs
- DBParameter.cs
- UrlMapping.cs
- RequestCacheEntry.cs
- ValidateNames.cs
- Typography.cs
- XmlNode.cs
- StorageComplexPropertyMapping.cs
- FontStyle.cs
- FactoryGenerator.cs
- VoiceChangeEventArgs.cs
- webproxy.cs
- TrackingLocationCollection.cs
- WriteFileContext.cs
- StoryFragments.cs
- NetNamedPipeBindingCollectionElement.cs
- Transform3DCollection.cs
- EventListener.cs
- ModelServiceImpl.cs
- HighlightOverlayGlyph.cs
- DataGridViewRowCancelEventArgs.cs
- DefaultValueAttribute.cs
- EncodingNLS.cs
- ZoneLinkButton.cs
- DefaultProxySection.cs
- TypeReference.cs
- DataRelationPropertyDescriptor.cs
- ComponentChangingEvent.cs
- XmlSchemaElement.cs
- CultureInfo.cs
- TextBoxRenderer.cs
- FileUtil.cs
- GenericQueueSurrogate.cs
- DataGridViewElement.cs
- Predicate.cs
- SqlExpressionNullability.cs
- ExtendedPropertyCollection.cs
- ControlCachePolicy.cs
- ObjectConverter.cs
- MasterPageParser.cs
- FacetEnabledSchemaElement.cs
- DataGridViewRowPostPaintEventArgs.cs
- ResourceDisplayNameAttribute.cs
- BaseAutoFormat.cs
- InternalBufferOverflowException.cs
- TextAnchor.cs
- OptionalMessageQuery.cs
- WebMessageBodyStyleHelper.cs
- ConfigurationSettings.cs
- ForwardPositionQuery.cs
- MethodCallExpression.cs
- StsCommunicationException.cs
- followingsibling.cs
- MemberNameValidator.cs
- GridViewEditEventArgs.cs
- RecipientInfo.cs
- ZipIORawDataFileBlock.cs
- CharacterMetricsDictionary.cs
- PermissionRequestEvidence.cs
- TemplateBindingExtension.cs
- OleDbParameter.cs
- Propagator.JoinPropagator.JoinPredicateVisitor.cs
- BlockCollection.cs
- TemplatePagerField.cs
- XsdDataContractExporter.cs
- PTUtility.cs
- isolationinterop.cs
- EntityDesignerUtils.cs
- Menu.cs
- ExpressionBindingCollection.cs
- ProvideValueServiceProvider.cs
- DataGridTablesFactory.cs
- LogLogRecordHeader.cs
- UpdatableGenericsFeature.cs
- CodeStatement.cs
- XmlSiteMapProvider.cs
- ElementHostPropertyMap.cs
- HttpCacheVary.cs
- RepeaterItemEventArgs.cs
- TypeSystemHelpers.cs
- InternalTransaction.cs
- SmiEventStream.cs
- ValidatorUtils.cs
- AsnEncodedData.cs
- NullExtension.cs
- DataGridViewCellConverter.cs
- OleStrCAMarshaler.cs
- AuthenticateEventArgs.cs
- Base64Decoder.cs
- SerializationObjectManager.cs
- MetadataFile.cs
- DefaultWorkflowSchedulerService.cs