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
- QuaternionRotation3D.cs
- ReflectTypeDescriptionProvider.cs
- CacheOutputQuery.cs
- SessionPageStateSection.cs
- TypeBrowserDialog.cs
- CanExecuteRoutedEventArgs.cs
- WebPartHeaderCloseVerb.cs
- DataGridViewRowErrorTextNeededEventArgs.cs
- DataTableNameHandler.cs
- XmlQueryOutput.cs
- TextBoxRenderer.cs
- XmlSerializationGeneratedCode.cs
- DataGridViewColumn.cs
- TableRowGroup.cs
- _LazyAsyncResult.cs
- InfoCardAsymmetricCrypto.cs
- SqlRewriteScalarSubqueries.cs
- Parser.cs
- EntityDataSourceColumn.cs
- Stylus.cs
- FormCollection.cs
- DataGridViewColumnStateChangedEventArgs.cs
- Visual3DCollection.cs
- ResolvedKeyFrameEntry.cs
- WsdlBuildProvider.cs
- ArrayListCollectionBase.cs
- CodeIterationStatement.cs
- RoutedPropertyChangedEventArgs.cs
- BooleanSwitch.cs
- DateTimeOffsetAdapter.cs
- NameValueFileSectionHandler.cs
- DockingAttribute.cs
- SafeNativeMethods.cs
- DebugView.cs
- processwaithandle.cs
- StringDictionary.cs
- XslTransform.cs
- QualificationDataItem.cs
- ScrollData.cs
- XAMLParseException.cs
- OperationAbortedException.cs
- ContentFilePart.cs
- AttributeEmitter.cs
- ProfileSection.cs
- XmlAtomErrorReader.cs
- DataGridrowEditEndingEventArgs.cs
- RijndaelManaged.cs
- WeakReferenceList.cs
- remotingproxy.cs
- ProcessHostMapPath.cs
- SemaphoreFullException.cs
- DetailsViewDeletedEventArgs.cs
- WebServiceFault.cs
- DataControlPagerLinkButton.cs
- LogLogRecordHeader.cs
- MissingSatelliteAssemblyException.cs
- SystemUdpStatistics.cs
- DateTimeOffset.cs
- GridView.cs
- BinaryObjectInfo.cs
- GPRECT.cs
- PriorityQueue.cs
- MemoryFailPoint.cs
- FlowDocumentReader.cs
- FontNamesConverter.cs
- _RequestLifetimeSetter.cs
- XsltOutput.cs
- XmlNodeChangedEventArgs.cs
- TextElementEditingBehaviorAttribute.cs
- Error.cs
- AccessorTable.cs
- CodeIdentifier.cs
- IisTraceListener.cs
- NeutralResourcesLanguageAttribute.cs
- DbConnectionOptions.cs
- XmlChoiceIdentifierAttribute.cs
- SqlDataSource.cs
- BamlRecordWriter.cs
- ViewBox.cs
- OdbcErrorCollection.cs
- NamespaceList.cs
- ResourceReader.cs
- SchemaImporterExtensionElementCollection.cs
- _IPv6Address.cs
- StaticContext.cs
- GlobalizationSection.cs
- WindowsTab.cs
- XmlSchemaObjectTable.cs
- ImplicitInputBrush.cs
- GeneralTransform.cs
- InkCanvasFeedbackAdorner.cs
- TcpTransportBindingElement.cs
- ReadOnlyNameValueCollection.cs
- AdPostCacheSubstitution.cs
- DataFormats.cs
- WebPartDisplayModeCollection.cs
- CqlGenerator.cs
- UnsafeNativeMethodsMilCoreApi.cs
- StaticFileHandler.cs
- PassportAuthentication.cs