Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Data / System / NewXml / TreeIterator.cs / 1305376 / TreeIterator.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //[....] //----------------------------------------------------------------------------- #pragma warning disable 618 // ignore obsolete warning about XmlDataDocument namespace System.Xml { using System.Diagnostics; // Iterates over non-attribute nodes internal sealed class TreeIterator : BaseTreeIterator { private XmlNode nodeTop; private XmlNode currentNode; internal TreeIterator( XmlNode nodeTop ) : base( ((XmlDataDocument)(nodeTop.OwnerDocument)).Mapper ) { Debug.Assert( nodeTop != null ); this.nodeTop = nodeTop; this.currentNode = nodeTop; } internal override void Reset() { currentNode = nodeTop; } internal override XmlNode CurrentNode { get { return currentNode; } } internal override bool Next() { XmlNode nextNode; // Try to move to the first child nextNode = currentNode.FirstChild; // No children, try next sibling if ( nextNode != null ) { currentNode = nextNode; return true; } return NextRight(); } internal override bool NextRight() { // Make sure we do not get past the nodeTop if we call NextRight on a just initialized iterator and nodeTop has no children if ( currentNode == nodeTop ) { currentNode = null; return false; } XmlNode nextNode = currentNode.NextSibling; if ( nextNode != null ) { currentNode = nextNode; return true; } // No next sibling, try the first sibling of from the parent chain nextNode = currentNode; while ( nextNode != nodeTop && nextNode.NextSibling == null ) nextNode = nextNode.ParentNode; if ( nextNode == nodeTop ) { currentNode = null; return false; } currentNode = nextNode.NextSibling; Debug.Assert( currentNode != null ); return true; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //[....] //----------------------------------------------------------------------------- #pragma warning disable 618 // ignore obsolete warning about XmlDataDocument namespace System.Xml { using System.Diagnostics; // Iterates over non-attribute nodes internal sealed class TreeIterator : BaseTreeIterator { private XmlNode nodeTop; private XmlNode currentNode; internal TreeIterator( XmlNode nodeTop ) : base( ((XmlDataDocument)(nodeTop.OwnerDocument)).Mapper ) { Debug.Assert( nodeTop != null ); this.nodeTop = nodeTop; this.currentNode = nodeTop; } internal override void Reset() { currentNode = nodeTop; } internal override XmlNode CurrentNode { get { return currentNode; } } internal override bool Next() { XmlNode nextNode; // Try to move to the first child nextNode = currentNode.FirstChild; // No children, try next sibling if ( nextNode != null ) { currentNode = nextNode; return true; } return NextRight(); } internal override bool NextRight() { // Make sure we do not get past the nodeTop if we call NextRight on a just initialized iterator and nodeTop has no children if ( currentNode == nodeTop ) { currentNode = null; return false; } XmlNode nextNode = currentNode.NextSibling; if ( nextNode != null ) { currentNode = nextNode; return true; } // No next sibling, try the first sibling of from the parent chain nextNode = currentNode; while ( nextNode != nodeTop && nextNode.NextSibling == null ) nextNode = nextNode.ParentNode; if ( nextNode == nodeTop ) { currentNode = null; return false; } currentNode = nextNode.NextSibling; Debug.Assert( currentNode != null ); return true; } } } // 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
- Single.cs
- DataGridViewDataConnection.cs
- ToolStripDropDown.cs
- DirectionalLight.cs
- DataGridViewCellConverter.cs
- QilChoice.cs
- XamlSerializerUtil.cs
- XmlName.cs
- RandomDelaySendsAsyncResult.cs
- ConnectionStringSettingsCollection.cs
- ReadOnlyHierarchicalDataSourceView.cs
- NetTcpSection.cs
- StringConcat.cs
- WebUtil.cs
- MLangCodePageEncoding.cs
- XmlQueryCardinality.cs
- StringToken.cs
- _AcceptOverlappedAsyncResult.cs
- Utility.cs
- ContextMenu.cs
- SurrogateEncoder.cs
- shaper.cs
- DataObject.cs
- RtfToXamlReader.cs
- FilterException.cs
- SparseMemoryStream.cs
- Style.cs
- Substitution.cs
- WebFaultClientMessageInspector.cs
- TrayIconDesigner.cs
- TimeoutValidationAttribute.cs
- DefaultAuthorizationContext.cs
- HttpChannelHelper.cs
- AvTraceDetails.cs
- SoapException.cs
- UIElementPropertyUndoUnit.cs
- DataGridViewAutoSizeColumnModeEventArgs.cs
- _ProxyChain.cs
- LabelLiteral.cs
- BasicHttpBinding.cs
- MutexSecurity.cs
- DataSetUtil.cs
- SiteMapNodeCollection.cs
- UrlRoutingHandler.cs
- EnumBuilder.cs
- CodeObjectCreateExpression.cs
- QueryPageSettingsEventArgs.cs
- CustomPopupPlacement.cs
- CodeSnippetTypeMember.cs
- ClientBuildManagerTypeDescriptionProviderBridge.cs
- RangeValueProviderWrapper.cs
- CapabilitiesSection.cs
- Solver.cs
- EdmProviderManifest.cs
- DataGridViewImageColumn.cs
- GatewayIPAddressInformationCollection.cs
- UInt64Storage.cs
- CommonObjectSecurity.cs
- SqlGenericUtil.cs
- LinearGradientBrush.cs
- MenuItemAutomationPeer.cs
- ProxySimple.cs
- ArrayTypeMismatchException.cs
- IPGlobalProperties.cs
- Oid.cs
- ColumnCollection.cs
- RSAPKCS1SignatureFormatter.cs
- UnsafeNativeMethods.cs
- XmlAttributeCache.cs
- StringKeyFrameCollection.cs
- UInt32.cs
- MemberInfoSerializationHolder.cs
- ToolStripComboBox.cs
- SubMenuStyleCollection.cs
- GeometryHitTestResult.cs
- SelectionRangeConverter.cs
- StylusPointPropertyInfoDefaults.cs
- HttpRuntime.cs
- XPathAncestorIterator.cs
- PropertyPushdownHelper.cs
- SHA512.cs
- SetUserLanguageRequest.cs
- BCLDebug.cs
- Propagator.JoinPropagator.cs
- TraceUtils.cs
- _UriSyntax.cs
- DeferrableContent.cs
- LocatorPartList.cs
- BindingNavigator.cs
- KnowledgeBase.cs
- AttributeTable.cs
- BitmapVisualManager.cs
- HashAlgorithm.cs
- SQLGuid.cs
- ContourSegment.cs
- WsdlBuildProvider.cs
- ParenthesizePropertyNameAttribute.cs
- PersonalizationState.cs
- CellParagraph.cs
- LicenseProviderAttribute.cs