Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / untmp / whidbey / QFE / ndp / fx / src / Xml / System / Xml / XPath / XPathNodeIterator.cs / 3 / XPathNodeIterator.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //----------------------------------------------------------------------------- namespace System.Xml.XPath { using System; using System.Collections; using System.Diagnostics; using System.Text; [DebuggerDisplay("Position={CurrentPosition}, Current={debuggerDisplayProxy}")] public abstract class XPathNodeIterator : ICloneable, IEnumerable { internal int count = -1; object ICloneable.Clone() { return this.Clone(); } public abstract XPathNodeIterator Clone(); public abstract bool MoveNext(); public abstract XPathNavigator Current { get; } public abstract int CurrentPosition { get; } public virtual int Count { get { if (count == -1) { XPathNodeIterator clone = this.Clone(); while(clone.MoveNext()) ; count = clone.CurrentPosition; } return count; } } public virtual IEnumerator GetEnumerator() { return new Enumerator(this); } private object debuggerDisplayProxy { get { return Current == null ? null : (object)new XPathNavigator.DebuggerDisplayProxy(Current); } } ////// Implementation of a resetable enumerator that is linked to the XPathNodeIterator used to create it. /// private class Enumerator : IEnumerator { private XPathNodeIterator original; // Keep original XPathNodeIterator in case Reset() is called private XPathNodeIterator current; private bool iterationStarted; public Enumerator(XPathNodeIterator original) { this.original = original.Clone(); } public virtual object Current { get { // 1. Do not reuse the XPathNavigator, as we do in XPathNodeIterator // 2. Throw exception if current position is before first node or after the last node if (this.iterationStarted) { // Current is null if iterator is positioned after the last node if (this.current == null) throw new InvalidOperationException(Res.GetString(Res.Sch_EnumFinished, string.Empty)); return this.current.Current.Clone(); } // User must call MoveNext before accessing Current property throw new InvalidOperationException(Res.GetString(Res.Sch_EnumNotStarted, string.Empty)); } } public virtual bool MoveNext() { // Delegate to XPathNodeIterator if (!this.iterationStarted) { // Reset iteration to original position this.current = this.original.Clone(); this.iterationStarted = true; } if (this.current == null || !this.current.MoveNext()) { // Iteration complete this.current = null; return false; } return true; } public virtual void Reset() { this.iterationStarted = false; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- loginstatus.cs
- SecurityUtils.cs
- InfoCardCryptoHelper.cs
- PageContent.cs
- XmlBufferReader.cs
- DictionaryEntry.cs
- InvalidProgramException.cs
- DocComment.cs
- DbProviderManifest.cs
- IndexedString.cs
- GridViewRowPresenter.cs
- PathFigureCollectionConverter.cs
- DataBinding.cs
- EntityKeyElement.cs
- UpWmlPageAdapter.cs
- WebPartChrome.cs
- JoinTreeSlot.cs
- ConvertBinder.cs
- MetadataCache.cs
- SchemaCollectionPreprocessor.cs
- InitializingNewItemEventArgs.cs
- SiteMapProvider.cs
- SmuggledIUnknown.cs
- IisTraceListener.cs
- DataGridViewCellMouseEventArgs.cs
- SaveFileDialog.cs
- PropertyDescriptorCollection.cs
- ObjectDataSourceFilteringEventArgs.cs
- SettingsPropertyWrongTypeException.cs
- BrowserDefinition.cs
- ReachUIElementCollectionSerializer.cs
- XmlSchemaObject.cs
- IDQuery.cs
- CachedPathData.cs
- HideDisabledControlAdapter.cs
- SerializationBinder.cs
- ObjectDataSourceDisposingEventArgs.cs
- CryptoHelper.cs
- RunWorkerCompletedEventArgs.cs
- CommonXSendMessage.cs
- InArgument.cs
- JsonWriter.cs
- RectangleGeometry.cs
- UIElementHelper.cs
- HwndSource.cs
- Padding.cs
- RewritingSimplifier.cs
- XamlHttpHandlerFactory.cs
- ComponentDispatcherThread.cs
- ValueType.cs
- HttpCacheVary.cs
- DeviceContext.cs
- future.cs
- FastPropertyAccessor.cs
- WebPartConnectionsDisconnectVerb.cs
- SizeAnimation.cs
- Menu.cs
- TextMessageEncodingBindingElement.cs
- RootBuilder.cs
- JournalEntryListConverter.cs
- XPathBuilder.cs
- SafeRegistryHandle.cs
- ListBoxChrome.cs
- CharacterString.cs
- DetailsViewPageEventArgs.cs
- AppSettingsExpressionEditor.cs
- BindValidationContext.cs
- PriorityBinding.cs
- ThreadExceptionEvent.cs
- RegistryExceptionHelper.cs
- XmlReturnWriter.cs
- ConnectionsZone.cs
- ConstraintStruct.cs
- FileSystemEventArgs.cs
- HtmlMobileTextWriter.cs
- CaretElement.cs
- OutputCacheProfileCollection.cs
- X509Certificate.cs
- DbConnectionPoolIdentity.cs
- TableItemStyle.cs
- altserialization.cs
- RadioButton.cs
- ElementNotEnabledException.cs
- ReaderWriterLock.cs
- DbSource.cs
- AffineTransform3D.cs
- ContractBase.cs
- MonikerBuilder.cs
- DataServiceStreamProviderWrapper.cs
- AnimatedTypeHelpers.cs
- XmlNamedNodeMap.cs
- GeneratedContractType.cs
- ToolBarButtonDesigner.cs
- PeerHopCountAttribute.cs
- StringCollection.cs
- PreviewKeyDownEventArgs.cs
- sqlnorm.cs
- ReferenceAssemblyAttribute.cs
- HttpChannelFactory.cs
- TextBlock.cs