Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Data / System / NewXml / BaseTreeIterator.cs / 1305376 / BaseTreeIterator.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //[....] //----------------------------------------------------------------------------- namespace System.Xml { // 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 { // 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
- DataGridLinkButton.cs
- ColorTransformHelper.cs
- MessageQueuePermissionAttribute.cs
- ReliableSession.cs
- Helper.cs
- HttpCapabilitiesSectionHandler.cs
- Console.cs
- TraceContextRecord.cs
- CssStyleCollection.cs
- MimePart.cs
- CursorInteropHelper.cs
- XmlWhitespace.cs
- ServiceModelActivationSectionGroup.cs
- SchemaContext.cs
- MsmqInputSessionChannel.cs
- CodeMethodReturnStatement.cs
- ResourcesChangeInfo.cs
- AutomationElementIdentifiers.cs
- DataGridCaption.cs
- VerticalAlignConverter.cs
- _Connection.cs
- Calendar.cs
- ToolBarButtonClickEvent.cs
- SoapMessage.cs
- documentsequencetextpointer.cs
- RunClient.cs
- CheckPair.cs
- SessionEndedEventArgs.cs
- DefaultCommandExtensionCallback.cs
- TextAutomationPeer.cs
- StylusEventArgs.cs
- BaseDataBoundControlDesigner.cs
- SchemaNames.cs
- ApplicationTrust.cs
- DataObjectMethodAttribute.cs
- OleDbEnumerator.cs
- SortExpressionBuilder.cs
- ProviderConnectionPointCollection.cs
- CompositionDesigner.cs
- SessionPageStatePersister.cs
- WebPartDisplayModeEventArgs.cs
- XmlSchemaExternal.cs
- WSHttpBinding.cs
- ProtocolViolationException.cs
- ValidatingPropertiesEventArgs.cs
- MapPathBasedVirtualPathProvider.cs
- ParameterSubsegment.cs
- LassoSelectionBehavior.cs
- Function.cs
- Properties.cs
- DomNameTable.cs
- SimpleApplicationHost.cs
- UnicastIPAddressInformationCollection.cs
- TagMapInfo.cs
- CharEntityEncoderFallback.cs
- ImageKeyConverter.cs
- ElementNotEnabledException.cs
- Token.cs
- StateBag.cs
- XPathDescendantIterator.cs
- SqlBooleanizer.cs
- CuspData.cs
- DbParameterCollectionHelper.cs
- OrderPreservingMergeHelper.cs
- SqlExpressionNullability.cs
- DataList.cs
- ObjectSet.cs
- ColorBlend.cs
- PrintPreviewControl.cs
- COM2PropertyBuilderUITypeEditor.cs
- securitymgrsite.cs
- OAVariantLib.cs
- EncryptedKeyIdentifierClause.cs
- OutOfMemoryException.cs
- PointAnimationBase.cs
- InternalsVisibleToAttribute.cs
- Point3DKeyFrameCollection.cs
- JournalNavigationScope.cs
- AxWrapperGen.cs
- WebBaseEventKeyComparer.cs
- DependencyObjectPropertyDescriptor.cs
- HttpResponseWrapper.cs
- AudioStateChangedEventArgs.cs
- TransactionFlowProperty.cs
- TaiwanLunisolarCalendar.cs
- SvcMapFileLoader.cs
- DataGridItem.cs
- Soap.cs
- WindowsFormsHost.cs
- UInt32.cs
- ReadOnlyDictionary.cs
- ExceptionUtility.cs
- ToolStripItemBehavior.cs
- BuildProvider.cs
- StylusDevice.cs
- FactoryMaker.cs
- ZipIOEndOfCentralDirectoryBlock.cs
- Int64Converter.cs
- DataSourceControl.cs
- DispatcherProcessingDisabled.cs