Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / ndp / fx / src / Data / System / NewXml / BaseTreeIterator.cs / 1 / BaseTreeIterator.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //[....] //[....] //----------------------------------------------------------------------------- namespace System.Xml { using System; using System.Data; using System.Diagnostics; // Iterates over non-attribute nodes internal abstract class BaseTreeIterator { protected DataSetMapper mapper; internal BaseTreeIterator( DataSetMapper mapper ) { this.mapper = mapper; } internal abstract void Reset(); internal abstract XmlNode CurrentNode { get; } internal abstract bool Next(); internal abstract bool NextRight(); internal bool NextRowElement() { while ( Next() ) { if ( OnRowElement() ) return true; } return false; } internal bool NextRightRowElement() { if ( NextRight() ) { if ( OnRowElement() ) return true; return NextRowElement(); } return false; } // Returns true if the current node is on a row element (head of a region) internal bool OnRowElement() { XmlBoundElement be = CurrentNode as XmlBoundElement; return (be != null) && (be.Row != null); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //[....] //[....] //----------------------------------------------------------------------------- namespace System.Xml { using System; using System.Data; using System.Diagnostics; // Iterates over non-attribute nodes internal abstract class BaseTreeIterator { protected DataSetMapper mapper; internal BaseTreeIterator( DataSetMapper mapper ) { this.mapper = mapper; } internal abstract void Reset(); internal abstract XmlNode CurrentNode { get; } internal abstract bool Next(); internal abstract bool NextRight(); internal bool NextRowElement() { while ( Next() ) { if ( OnRowElement() ) return true; } return false; } internal bool NextRightRowElement() { if ( NextRight() ) { if ( OnRowElement() ) return true; return NextRowElement(); } return false; } // Returns true if the current node is on a row element (head of a region) internal bool OnRowElement() { XmlBoundElement be = CurrentNode as XmlBoundElement; return (be != null) && (be.Row != null); } } } // 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
- XmlSchemaFacet.cs
- DelegateArgumentValue.cs
- SqlWorkflowInstanceStoreLock.cs
- CodeExpressionStatement.cs
- TerminatorSinks.cs
- ObjectStateEntryDbUpdatableDataRecord.cs
- DataTableNewRowEvent.cs
- VectorAnimationBase.cs
- Int16AnimationUsingKeyFrames.cs
- GridViewEditEventArgs.cs
- WebResourceAttribute.cs
- XmlMembersMapping.cs
- Rules.cs
- Privilege.cs
- FakeModelPropertyImpl.cs
- ApplicationBuildProvider.cs
- ResXResourceWriter.cs
- SchemaElementLookUpTable.cs
- ToolStripSplitButton.cs
- _HTTPDateParse.cs
- AspNetRouteServiceHttpHandler.cs
- ListViewSortEventArgs.cs
- CodeDOMUtility.cs
- CustomAttributeFormatException.cs
- MatrixConverter.cs
- XPathPatternParser.cs
- SmtpFailedRecipientException.cs
- PointHitTestParameters.cs
- MenuItem.cs
- StringToken.cs
- ControlEvent.cs
- DataRowCollection.cs
- RangeBaseAutomationPeer.cs
- RotateTransform3D.cs
- Fonts.cs
- WebEvents.cs
- UnauthorizedWebPart.cs
- CategoryAttribute.cs
- SafeRegistryHandle.cs
- EnvelopedPkcs7.cs
- __ComObject.cs
- EdgeModeValidation.cs
- PermissionSet.cs
- SubqueryRules.cs
- XmlLinkedNode.cs
- SvcMapFileSerializer.cs
- PeerToPeerException.cs
- DataGridViewCellEventArgs.cs
- Visual.cs
- PlatformNotSupportedException.cs
- DrawingGroup.cs
- SystemWebCachingSectionGroup.cs
- ViewStateChangedEventArgs.cs
- DeclaredTypeElementCollection.cs
- StylusPointPropertyInfo.cs
- TransformPattern.cs
- CompiledQuery.cs
- PropertyFilterAttribute.cs
- BrushConverter.cs
- OleDbConnectionFactory.cs
- RegexCompilationInfo.cs
- QuadraticBezierSegment.cs
- WebExceptionStatus.cs
- TransformGroup.cs
- DataServiceQueryProvider.cs
- FloaterParagraph.cs
- VectorConverter.cs
- CodeComment.cs
- OleDbCommandBuilder.cs
- RichTextBoxContextMenu.cs
- SerializationStore.cs
- SplineKeyFrames.cs
- WebPartTransformerAttribute.cs
- DataGridAutoGeneratingColumnEventArgs.cs
- LinkClickEvent.cs
- BindingExpressionBase.cs
- UnsafeNativeMethods.cs
- CryptoApi.cs
- OracleInfoMessageEventArgs.cs
- MetadataItemEmitter.cs
- DefaultParameterValueAttribute.cs
- ManagedFilter.cs
- OleDbErrorCollection.cs
- ProfileEventArgs.cs
- Substitution.cs
- remotingproxy.cs
- PreservationFileReader.cs
- PointCollection.cs
- ISessionStateStore.cs
- FontSourceCollection.cs
- QilParameter.cs
- XmlEnumAttribute.cs
- DbConnectionStringCommon.cs
- VisualStyleRenderer.cs
- ClassHandlersStore.cs
- ToolStripMenuItemDesigner.cs
- BinHexDecoder.cs
- TraceXPathNavigator.cs
- RadioButtonAutomationPeer.cs
- CmsUtils.cs