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
- ScrollContentPresenter.cs
- ImageAutomationPeer.cs
- VerificationException.cs
- XmlComment.cs
- ErrorHandler.cs
- UIElement.cs
- SplashScreen.cs
- TaskForm.cs
- XmlDomTextWriter.cs
- HttpEncoderUtility.cs
- ObjectDisposedException.cs
- EventSourceCreationData.cs
- ReachUIElementCollectionSerializerAsync.cs
- PeerConnector.cs
- AssemblyFilter.cs
- DesignerVerbToolStripMenuItem.cs
- SelectorItemAutomationPeer.cs
- OutputCacheEntry.cs
- EditingMode.cs
- IndexedString.cs
- ScriptingJsonSerializationSection.cs
- XPathDocumentBuilder.cs
- SynchronizedInputPattern.cs
- MachineKey.cs
- CodePropertyReferenceExpression.cs
- XPathBinder.cs
- brushes.cs
- SwitchAttribute.cs
- DirectoryInfo.cs
- ScrollChrome.cs
- TableColumnCollection.cs
- ResourceContainer.cs
- ConsumerConnectionPoint.cs
- Events.cs
- RandomNumberGenerator.cs
- OpenTypeLayoutCache.cs
- RegisteredExpandoAttribute.cs
- CompatibleComparer.cs
- ConfigurationValidatorBase.cs
- DataPagerCommandEventArgs.cs
- X509ServiceCertificateAuthenticationElement.cs
- DesignTimeTemplateParser.cs
- BamlBinaryReader.cs
- PropertyChangedEventManager.cs
- Emitter.cs
- GB18030Encoding.cs
- CorrelationInitializer.cs
- PieceDirectory.cs
- TextEditorThreadLocalStore.cs
- ScalarRestriction.cs
- CookieParameter.cs
- ContractSearchPattern.cs
- Rectangle.cs
- DbProviderSpecificTypePropertyAttribute.cs
- HttpServerUtilityWrapper.cs
- arc.cs
- ChangeConflicts.cs
- XmlSecureResolver.cs
- ExpressionPrefixAttribute.cs
- AppSecurityManager.cs
- UIAgentAsyncEndRequest.cs
- RuntimeResourceSet.cs
- ToolStrip.cs
- CodeCompiler.cs
- WebConfigurationManager.cs
- NamedPermissionSet.cs
- WebPartConnectionsConfigureVerb.cs
- SimpleApplicationHost.cs
- DataControlFieldCell.cs
- SqlBuffer.cs
- InterleavedZipPartStream.cs
- XPathArrayIterator.cs
- DocumentSequenceHighlightLayer.cs
- ExpressionEditor.cs
- FormCollection.cs
- Accessors.cs
- DataServiceRequestOfT.cs
- XmlSerializerFactory.cs
- PermissionSet.cs
- TextBox.cs
- ISAPIWorkerRequest.cs
- PageThemeCodeDomTreeGenerator.cs
- ObjectSecurity.cs
- TypedDataSourceCodeGenerator.cs
- ColumnHeader.cs
- ConfigXmlSignificantWhitespace.cs
- pingexception.cs
- DoubleLinkListEnumerator.cs
- Assert.cs
- SqlGatherConsumedAliases.cs
- MonitorWrapper.cs
- RowsCopiedEventArgs.cs
- GridItemProviderWrapper.cs
- ExpressionTable.cs
- AbsoluteQuery.cs
- TypeResolver.cs
- DllHostInitializer.cs
- AstTree.cs
- RoutedEventValueSerializer.cs
- ThreadStartException.cs