Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / 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
- ConstructorArgumentAttribute.cs
- Range.cs
- Workspace.cs
- InstanceDataCollectionCollection.cs
- DbReferenceCollection.cs
- DuplexChannelFactory.cs
- EditingMode.cs
- DataKeyArray.cs
- HtmlEmptyTagControlBuilder.cs
- RuleProcessor.cs
- TransformationRules.cs
- FontDriver.cs
- LayoutManager.cs
- DataGridViewAutoSizeModeEventArgs.cs
- HtmlWindowCollection.cs
- ListViewDeleteEventArgs.cs
- SerialPort.cs
- ACL.cs
- AsymmetricSignatureFormatter.cs
- TogglePatternIdentifiers.cs
- CommandHelpers.cs
- XmlSchemaRedefine.cs
- URI.cs
- SecurityContextTokenCache.cs
- PermissionAttributes.cs
- SoapExtensionTypeElementCollection.cs
- CorrelationRequestContext.cs
- CallContext.cs
- IisTraceListener.cs
- TransactionScope.cs
- HMACRIPEMD160.cs
- IconBitmapDecoder.cs
- EntityProviderFactory.cs
- WindowsFormsHostPropertyMap.cs
- behaviorssection.cs
- Base64Stream.cs
- IisTraceListener.cs
- SqlClientWrapperSmiStream.cs
- TimeSpanMinutesConverter.cs
- SystemBrushes.cs
- HostingEnvironmentException.cs
- DisplayInformation.cs
- ThumbAutomationPeer.cs
- ConfigurationPermission.cs
- ContainerControl.cs
- DiagnosticsConfigurationHandler.cs
- ObjectTag.cs
- EntityContainerAssociationSet.cs
- StatusBarPanelClickEvent.cs
- FormViewDeleteEventArgs.cs
- HtmlShim.cs
- MimeXmlReflector.cs
- AvTraceDetails.cs
- Convert.cs
- DbDataAdapter.cs
- AdapterUtil.cs
- HttpWebRequestElement.cs
- TableLayoutSettings.cs
- WsatServiceCertificate.cs
- SelectedPathEditor.cs
- RemoteWebConfigurationHostServer.cs
- XmlDocument.cs
- ButtonFlatAdapter.cs
- ForwardPositionQuery.cs
- CodePageUtils.cs
- ToggleProviderWrapper.cs
- DispatcherBuilder.cs
- IsolatedStorageFile.cs
- ChtmlCalendarAdapter.cs
- SendMessageChannelCache.cs
- PointAnimationClockResource.cs
- Comparer.cs
- BoundsDrawingContextWalker.cs
- TopClause.cs
- TextFormatterHost.cs
- HostExecutionContextManager.cs
- GridEntry.cs
- AppDomainUnloadedException.cs
- DropTarget.cs
- FileFormatException.cs
- XmlnsPrefixAttribute.cs
- TypeUtil.cs
- TableSectionStyle.cs
- MetadataUtil.cs
- ContentPathSegment.cs
- PagePropertiesChangingEventArgs.cs
- MetricEntry.cs
- TabControl.cs
- Size3DConverter.cs
- UICuesEvent.cs
- DataGridViewBindingCompleteEventArgs.cs
- IconConverter.cs
- TreeBuilder.cs
- FlowDocumentReaderAutomationPeer.cs
- XmlCDATASection.cs
- LogWriteRestartAreaState.cs
- MultiPageTextView.cs
- CompareValidator.cs
- SymbolDocumentInfo.cs
- Journal.cs