Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / 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
- InstanceNotReadyException.cs
- ConditionValidator.cs
- DataServiceRequestException.cs
- SequentialUshortCollection.cs
- XmlCompatibilityReader.cs
- WindowsIdentity.cs
- TransformedBitmap.cs
- GACMembershipCondition.cs
- NumericUpDown.cs
- counter.cs
- ViewBox.cs
- FormsIdentity.cs
- StringUtil.cs
- ImageField.cs
- TimeSpanFormat.cs
- LogManagementAsyncResult.cs
- InfoCardRSAPKCS1KeyExchangeFormatter.cs
- SerializationSectionGroup.cs
- EdgeModeValidation.cs
- SpecialFolderEnumConverter.cs
- Cursors.cs
- CompositeFontFamily.cs
- DataGridViewIntLinkedList.cs
- ComponentDispatcher.cs
- TemplatePropertyEntry.cs
- Lazy.cs
- CharacterMetrics.cs
- ObjectContext.cs
- StoreItemCollection.Loader.cs
- MessageAction.cs
- DbSource.cs
- WizardStepCollectionEditor.cs
- RequestResizeEvent.cs
- XmlUtf8RawTextWriter.cs
- NativeMethods.cs
- CheckBoxField.cs
- TextCompositionManager.cs
- ResourceReader.cs
- ComplexBindingPropertiesAttribute.cs
- DrawingGroup.cs
- ZipIOLocalFileHeader.cs
- EventToken.cs
- HtmlSelect.cs
- Typeface.cs
- ListViewTableRow.cs
- DirtyTextRange.cs
- SudsCommon.cs
- AnnotationHelper.cs
- DataGridViewCellStyle.cs
- BaseParser.cs
- TableStyle.cs
- SqlCacheDependencyDatabaseCollection.cs
- UnwrappedTypesXmlSerializerManager.cs
- AttributeProviderAttribute.cs
- FilterElement.cs
- ConnectionsZone.cs
- BamlRecordReader.cs
- ArrayList.cs
- OdbcConnectionHandle.cs
- VisualTreeUtils.cs
- DbConnectionOptions.cs
- RequiredAttributeAttribute.cs
- WizardDesigner.cs
- Journaling.cs
- UdpChannelFactory.cs
- TextEncodedRawTextWriter.cs
- MobileFormsAuthentication.cs
- WebPartCatalogCloseVerb.cs
- TriState.cs
- DbConnectionOptions.cs
- PhonemeConverter.cs
- FrameworkContentElement.cs
- DataGridViewRowDividerDoubleClickEventArgs.cs
- FaultContractAttribute.cs
- FolderNameEditor.cs
- relpropertyhelper.cs
- ActiveXSite.cs
- APCustomTypeDescriptor.cs
- WindowsSpinner.cs
- KoreanCalendar.cs
- InProcStateClientManager.cs
- UrlAuthFailedErrorFormatter.cs
- JournalNavigationScope.cs
- LinearGradientBrush.cs
- EntityUtil.cs
- HandleCollector.cs
- ResolveDuplexCD1AsyncResult.cs
- EndpointNotFoundException.cs
- XmlProcessingInstruction.cs
- AppDomainResourcePerfCounters.cs
- ADRoleFactory.cs
- ContentDisposition.cs
- CodeMethodReturnStatement.cs
- ContextMenuStripActionList.cs
- CodeAttributeDeclaration.cs
- Merger.cs
- PropertyGrid.cs
- CommandTreeTypeHelper.cs
- DataRelationPropertyDescriptor.cs
- CreateSequenceResponse.cs