Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / 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
- DesignerDataRelationship.cs
- SystemTcpStatistics.cs
- DependencyProperty.cs
- EventLogPermissionEntry.cs
- GenerateTemporaryTargetAssembly.cs
- CertificateReferenceElement.cs
- MessageSmuggler.cs
- Bitmap.cs
- QuaternionAnimationUsingKeyFrames.cs
- SelectionWordBreaker.cs
- TransactionManager.cs
- ControlBuilderAttribute.cs
- CollectionViewGroupInternal.cs
- prefixendpointaddressmessagefiltertable.cs
- SapiGrammar.cs
- WindowsTreeView.cs
- StylusButtonEventArgs.cs
- NumberFormatInfo.cs
- MeshGeometry3D.cs
- HyperLinkDesigner.cs
- VariableModifiersHelper.cs
- RouteItem.cs
- XmlEntity.cs
- EmptyControlCollection.cs
- unsafenativemethodsother.cs
- ViewEvent.cs
- MimeMapping.cs
- HtmlLink.cs
- ContextMenuStripGroup.cs
- ADMembershipUser.cs
- WaitingCursor.cs
- QEncodedStream.cs
- DriveNotFoundException.cs
- SyndicationSerializer.cs
- ChangesetResponse.cs
- EditorZone.cs
- PageParserFilter.cs
- ExecutionContext.cs
- PtsHost.cs
- NominalTypeEliminator.cs
- Vector3DIndependentAnimationStorage.cs
- PrivilegedConfigurationManager.cs
- WindowsListViewSubItem.cs
- Ipv6Element.cs
- CodeSubDirectoriesCollection.cs
- EndpointDesigner.cs
- basecomparevalidator.cs
- ToolstripProfessionalRenderer.cs
- FixedTextBuilder.cs
- TextContainerChangedEventArgs.cs
- BlobPersonalizationState.cs
- MinMaxParagraphWidth.cs
- WebPartMovingEventArgs.cs
- TogglePatternIdentifiers.cs
- ArrayList.cs
- ScrollItemPattern.cs
- HealthMonitoringSectionHelper.cs
- ActivitySurrogateSelector.cs
- CursorConverter.cs
- TextSelectionProcessor.cs
- DataControlButton.cs
- CaseExpr.cs
- thaishape.cs
- XhtmlBasicSelectionListAdapter.cs
- BindableTemplateBuilder.cs
- TransformerInfo.cs
- StreamingContext.cs
- EventLogReader.cs
- EntityTemplateFactory.cs
- ProgressPage.cs
- NumericUpDownAccelerationCollection.cs
- SqlInternalConnection.cs
- TimeSpanMinutesOrInfiniteConverter.cs
- CodeDelegateCreateExpression.cs
- FilteredReadOnlyMetadataCollection.cs
- FlowLayoutPanelDesigner.cs
- RuleProcessor.cs
- SchemaManager.cs
- HttpProfileBase.cs
- DataServiceStreamProviderWrapper.cs
- ProviderSettings.cs
- MatrixValueSerializer.cs
- BitmapVisualManager.cs
- DataControlCommands.cs
- MetadataArtifactLoaderCompositeResource.cs
- StretchValidation.cs
- SocketPermission.cs
- BuildProviderAppliesToAttribute.cs
- PenContexts.cs
- sqlpipe.cs
- UInt64.cs
- EpmContentSerializer.cs
- WsdlBuildProvider.cs
- SamlConstants.cs
- ValidatingPropertiesEventArgs.cs
- HttpAsyncResult.cs
- CngKeyBlobFormat.cs
- MetadataProperty.cs
- SelectionItemPattern.cs
- SqlNotificationEventArgs.cs