Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / ndp / fx / src / Xml / System / Xml / XPath / Internal / ChildrenQuery.cs / 1 / ChildrenQuery.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.Globalization; using System.Xml.Xsl; using System.Collections; internal class ChildrenQuery : BaseAxisQuery { XPathNodeIterator iterator = XPathEmptyIterator.Instance; public ChildrenQuery(Query qyInput, string name, string prefix, XPathNodeType type) : base (qyInput, name, prefix, type) {} protected ChildrenQuery(ChildrenQuery other) : base(other) { this.iterator = Clone(other.iterator); } public override void Reset() { iterator = XPathEmptyIterator.Instance; base.Reset(); } public override XPathNavigator Advance() { while (!iterator.MoveNext()) { XPathNavigator input = qyInput.Advance(); if (input == null) { return null; } if (NameTest) { if (TypeTest == XPathNodeType.ProcessingInstruction) { iterator = new IteratorFilter(input.SelectChildren(TypeTest), Name); } else { iterator = input.SelectChildren(Name, Namespace); } } else { iterator = input.SelectChildren(TypeTest); } position = 0; } position ++; currentNode = iterator.Current; return currentNode; } // Advance public sealed override XPathNavigator MatchNode(XPathNavigator context) { if (context != null) { if (matches(context)) { XPathNavigator temp = context.Clone(); if (temp.NodeType != XPathNodeType.Attribute && temp.MoveToParent()) { return qyInput.MatchNode(temp); } return null; } } return null; } public override XPathNodeIterator Clone() { return new ChildrenQuery(this); } } } // 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.Globalization; using System.Xml.Xsl; using System.Collections; internal class ChildrenQuery : BaseAxisQuery { XPathNodeIterator iterator = XPathEmptyIterator.Instance; public ChildrenQuery(Query qyInput, string name, string prefix, XPathNodeType type) : base (qyInput, name, prefix, type) {} protected ChildrenQuery(ChildrenQuery other) : base(other) { this.iterator = Clone(other.iterator); } public override void Reset() { iterator = XPathEmptyIterator.Instance; base.Reset(); } public override XPathNavigator Advance() { while (!iterator.MoveNext()) { XPathNavigator input = qyInput.Advance(); if (input == null) { return null; } if (NameTest) { if (TypeTest == XPathNodeType.ProcessingInstruction) { iterator = new IteratorFilter(input.SelectChildren(TypeTest), Name); } else { iterator = input.SelectChildren(Name, Namespace); } } else { iterator = input.SelectChildren(TypeTest); } position = 0; } position ++; currentNode = iterator.Current; return currentNode; } // Advance public sealed override XPathNavigator MatchNode(XPathNavigator context) { if (context != null) { if (matches(context)) { XPathNavigator temp = context.Clone(); if (temp.NodeType != XPathNodeType.Attribute && temp.MoveToParent()) { return qyInput.MatchNode(temp); } return null; } } return null; } public override XPathNodeIterator Clone() { return new ChildrenQuery(this); } } } // 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
- SqlConnectionHelper.cs
- ComponentGlyph.cs
- DefaultTextStore.cs
- GeometryHitTestResult.cs
- Pointer.cs
- XmlQueryCardinality.cs
- WindowsFormsSynchronizationContext.cs
- TempFiles.cs
- CreateRefExpr.cs
- WhitespaceRuleReader.cs
- FontResourceCache.cs
- Compiler.cs
- ActionFrame.cs
- ItemContainerPattern.cs
- Underline.cs
- ListViewSelectEventArgs.cs
- listitem.cs
- Policy.cs
- SecurityCriticalDataForSet.cs
- NativeWrapper.cs
- ISAPIApplicationHost.cs
- UInt16Converter.cs
- FileRecordSequence.cs
- CryptoHandle.cs
- ConfigurationErrorsException.cs
- ColumnResizeUndoUnit.cs
- NameValueCollection.cs
- NativeBuffer.cs
- DesignerDataTable.cs
- WithParamAction.cs
- ToolTipAutomationPeer.cs
- ToolstripProfessionalRenderer.cs
- TypeDelegator.cs
- TimeoutException.cs
- DbMetaDataColumnNames.cs
- ResXFileRef.cs
- ReaderWriterLockWrapper.cs
- MulticastNotSupportedException.cs
- ManipulationStartedEventArgs.cs
- EllipseGeometry.cs
- XPathNavigatorReader.cs
- StateBag.cs
- FolderBrowserDialogDesigner.cs
- ResourceDictionaryCollection.cs
- MouseOverProperty.cs
- TypeBuilderInstantiation.cs
- SharedUtils.cs
- LinkedList.cs
- _CacheStreams.cs
- DesignSurfaceServiceContainer.cs
- CheckableControlBaseAdapter.cs
- LabelEditEvent.cs
- SubtreeProcessor.cs
- OutOfMemoryException.cs
- InputDevice.cs
- EnumConverter.cs
- Baml6Assembly.cs
- HeaderedContentControl.cs
- ResourcesGenerator.cs
- Accessible.cs
- MiniLockedBorderGlyph.cs
- Label.cs
- Form.cs
- GeometryGroup.cs
- TemplateNameScope.cs
- IRCollection.cs
- AssociationSetEnd.cs
- CommonDialog.cs
- _ShellExpression.cs
- Single.cs
- _BasicClient.cs
- HttpDictionary.cs
- ImageMap.cs
- SpecularMaterial.cs
- Rijndael.cs
- TiffBitmapEncoder.cs
- CompModSwitches.cs
- InkCanvas.cs
- UpdateEventArgs.cs
- SequenceRangeCollection.cs
- SelectionProviderWrapper.cs
- PageRanges.cs
- WebPartConnection.cs
- WebPartVerbsEventArgs.cs
- MULTI_QI.cs
- ProjectionCamera.cs
- cookieexception.cs
- BitmapEffectGroup.cs
- MarkupCompiler.cs
- MruCache.cs
- PersistenceException.cs
- CacheChildrenQuery.cs
- WorkflowQueue.cs
- DataGridViewCellCollection.cs
- WebPartDisplayModeEventArgs.cs
- EventLogPermission.cs
- HostingEnvironmentException.cs
- QueryContinueDragEvent.cs
- AccessedThroughPropertyAttribute.cs
- HttpSessionStateBase.cs