Code:
/ 4.0 / 4.0 / untmp / 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- SystemIPv4InterfaceProperties.cs
- HtmlFormParameterReader.cs
- WindowsMenu.cs
- DynamicValidatorEventArgs.cs
- Trace.cs
- MessageEncoderFactory.cs
- DesignerAttribute.cs
- BufferModesCollection.cs
- CharacterBufferReference.cs
- SqlFactory.cs
- OperationAbortedException.cs
- Dynamic.cs
- EdmPropertyAttribute.cs
- Fonts.cs
- StringCollection.cs
- Int64Storage.cs
- Range.cs
- OSFeature.cs
- AspNetSynchronizationContext.cs
- StringValidatorAttribute.cs
- WebPartZoneCollection.cs
- SessionStateUtil.cs
- XXXInfos.cs
- ToolStripPanel.cs
- StorageMappingItemCollection.cs
- ListViewGroupConverter.cs
- BitmapEncoder.cs
- DbFunctionCommandTree.cs
- StructuralCache.cs
- SerializerProvider.cs
- WeakEventTable.cs
- Timer.cs
- WizardForm.cs
- securitycriticaldataformultiplegetandset.cs
- MouseDevice.cs
- DictionaryEntry.cs
- UserInitiatedRoutedEventPermissionAttribute.cs
- MiniParameterInfo.cs
- HeaderCollection.cs
- EdmError.cs
- ProbeMatchesApril2005.cs
- TextRangeEdit.cs
- GB18030Encoding.cs
- PolicyValidationException.cs
- TextStore.cs
- ApplicationException.cs
- WebPartZoneBaseDesigner.cs
- TrackingStringDictionary.cs
- SymmetricCryptoHandle.cs
- CultureNotFoundException.cs
- AssemblyAttributesGoHere.cs
- SafeNativeHandle.cs
- DataGridColumnCollection.cs
- InternalDuplexBindingElement.cs
- XmlSerializerNamespaces.cs
- GenericPrincipal.cs
- TextDecoration.cs
- OleDbStruct.cs
- DataBindingHandlerAttribute.cs
- ManagementQuery.cs
- HwndStylusInputProvider.cs
- TextDecorationLocationValidation.cs
- Graphics.cs
- SocketInformation.cs
- CodePageUtils.cs
- FormatSettings.cs
- MobileContainerDesigner.cs
- XamlContextStack.cs
- Validator.cs
- FontWeights.cs
- ClientTarget.cs
- FileUtil.cs
- XmlIlVisitor.cs
- StrongNamePublicKeyBlob.cs
- ProfilePropertySettings.cs
- PassportAuthentication.cs
- ProjectionQueryOptionExpression.cs
- AppDomain.cs
- HwndMouseInputProvider.cs
- MdiWindowListItemConverter.cs
- WebPartConnectionsCancelEventArgs.cs
- IndexOutOfRangeException.cs
- FontClient.cs
- MembershipSection.cs
- NoneExcludedImageIndexConverter.cs
- EntityDataSource.cs
- StorageModelBuildProvider.cs
- ComponentResourceManager.cs
- TextBoxBase.cs
- TextBoxAutoCompleteSourceConverter.cs
- ObjectManager.cs
- LinqDataSourceSelectEventArgs.cs
- WebMessageEncodingBindingElement.cs
- GridItemPatternIdentifiers.cs
- controlskin.cs
- StreamSecurityUpgradeInitiator.cs
- FileDialogCustomPlace.cs
- Compensate.cs
- TabPanel.cs
- BitmapInitialize.cs