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 / followingquery.cs / 1 / followingquery.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; internal sealed class FollowingQuery : BaseAxisQuery { private XPathNavigator input; private XPathNodeIterator iterator; public FollowingQuery(Query qyInput, string name, string prefix, XPathNodeType typeTest) : base(qyInput, name, prefix, typeTest) {} private FollowingQuery(FollowingQuery other) : base(other) { this.input = Clone(other.input); this.iterator = Clone(other.iterator); } public override void Reset() { iterator = null; base.Reset(); } public override XPathNavigator Advance() { if (iterator == null) { input = qyInput.Advance(); if (input == null) { return null; } XPathNavigator prev; do { prev = input.Clone(); input = qyInput.Advance(); } while (prev.IsDescendant(input)); input = prev; iterator = XPathEmptyIterator.Instance; } while (! iterator.MoveNext()) { bool matchSelf; if (input.NodeType == XPathNodeType.Attribute || input.NodeType == XPathNodeType.Namespace) { input.MoveToParent(); matchSelf = false; } else { while (! input.MoveToNext()) { if (! input.MoveToParent()) { return null; } } matchSelf = true; } if (NameTest) { iterator = input.SelectDescendants(Name, Namespace, matchSelf); } else { iterator = input.SelectDescendants(TypeTest, matchSelf); } } position++; currentNode = iterator.Current; return currentNode; } public override XPathNodeIterator Clone() { return new FollowingQuery(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; internal sealed class FollowingQuery : BaseAxisQuery { private XPathNavigator input; private XPathNodeIterator iterator; public FollowingQuery(Query qyInput, string name, string prefix, XPathNodeType typeTest) : base(qyInput, name, prefix, typeTest) {} private FollowingQuery(FollowingQuery other) : base(other) { this.input = Clone(other.input); this.iterator = Clone(other.iterator); } public override void Reset() { iterator = null; base.Reset(); } public override XPathNavigator Advance() { if (iterator == null) { input = qyInput.Advance(); if (input == null) { return null; } XPathNavigator prev; do { prev = input.Clone(); input = qyInput.Advance(); } while (prev.IsDescendant(input)); input = prev; iterator = XPathEmptyIterator.Instance; } while (! iterator.MoveNext()) { bool matchSelf; if (input.NodeType == XPathNodeType.Attribute || input.NodeType == XPathNodeType.Namespace) { input.MoveToParent(); matchSelf = false; } else { while (! input.MoveToNext()) { if (! input.MoveToParent()) { return null; } } matchSelf = true; } if (NameTest) { iterator = input.SelectDescendants(Name, Namespace, matchSelf); } else { iterator = input.SelectDescendants(TypeTest, matchSelf); } } position++; currentNode = iterator.Current; return currentNode; } public override XPathNodeIterator Clone() { return new FollowingQuery(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
- BaseTemplateBuildProvider.cs
- SqlDataReader.cs
- DrawingContextDrawingContextWalker.cs
- Double.cs
- ServiceElementCollection.cs
- GraphicsState.cs
- HttpStreamXmlDictionaryReader.cs
- LOSFormatter.cs
- ModelPerspective.cs
- ListViewUpdateEventArgs.cs
- HttpModuleActionCollection.cs
- DrawingContextDrawingContextWalker.cs
- _LocalDataStore.cs
- BamlRecordWriter.cs
- EntityProxyFactory.cs
- XmlSchemaInfo.cs
- HtmlTextViewAdapter.cs
- WhileDesigner.cs
- SqlConnectionManager.cs
- ControlEvent.cs
- GrammarBuilderDictation.cs
- OleDbPermission.cs
- DeferredReference.cs
- _TimerThread.cs
- LocationEnvironment.cs
- AuthenticationManager.cs
- ObjectRef.cs
- DataGridViewColumn.cs
- SqlNode.cs
- RecognizeCompletedEventArgs.cs
- Adorner.cs
- DataGridViewCellStyleChangedEventArgs.cs
- MethodBuilderInstantiation.cs
- EventHandlerList.cs
- Buffer.cs
- OptimizerPatterns.cs
- PageScaling.cs
- ManipulationVelocities.cs
- XmlQualifiedNameTest.cs
- DataGridViewControlCollection.cs
- Section.cs
- TextEditorLists.cs
- PointUtil.cs
- BaseParser.cs
- EntityDataSourceContainerNameItem.cs
- DataObjectCopyingEventArgs.cs
- Visual3D.cs
- SerializableAttribute.cs
- newinstructionaction.cs
- smtpconnection.cs
- RealProxy.cs
- MultiBindingExpression.cs
- TimeSpanMinutesConverter.cs
- UnsafeNativeMethods.cs
- HtmlTable.cs
- Adorner.cs
- future.cs
- OdbcErrorCollection.cs
- DerivedKeySecurityToken.cs
- ResourceSet.cs
- InvalidAsynchronousStateException.cs
- PerfCounterSection.cs
- SmiTypedGetterSetter.cs
- MetadataArtifactLoader.cs
- UrlPropertyAttribute.cs
- DataControlExtensions.cs
- SrgsNameValueTag.cs
- BamlRecordWriter.cs
- MimeFormatter.cs
- DeviceContext2.cs
- TokenBasedSetEnumerator.cs
- DocumentationServerProtocol.cs
- XNodeNavigator.cs
- ActivationServices.cs
- PixelFormats.cs
- ByteConverter.cs
- SignatureConfirmationElement.cs
- ParentControlDesigner.cs
- ItemCheckedEvent.cs
- TriggerCollection.cs
- _UriSyntax.cs
- AuthenticationConfig.cs
- GlobalizationSection.cs
- UTF8Encoding.cs
- Rotation3D.cs
- MailWebEventProvider.cs
- ListControlConvertEventArgs.cs
- ISAPIWorkerRequest.cs
- Content.cs
- ScriptControlDescriptor.cs
- ReferencedType.cs
- returneventsaver.cs
- RestHandlerFactory.cs
- TextEditorMouse.cs
- ResXDataNode.cs
- EFDataModelProvider.cs
- DataGridViewElement.cs
- Helpers.cs
- BitmapSourceSafeMILHandle.cs
- TemplateControlBuildProvider.cs