Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / Xml / System / Xml / XPath / XPathNodeIterator.cs / 2 / 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
- CatalogZoneBase.cs
- DeviceFilterEditorDialog.cs
- TreeBuilder.cs
- NativeMethods.cs
- SiteMapPath.cs
- SoapInteropTypes.cs
- BoolExpressionVisitors.cs
- MyContact.cs
- WebControl.cs
- DataRowView.cs
- ArrayWithOffset.cs
- ClrPerspective.cs
- HttpDebugHandler.cs
- Matrix.cs
- EntityDataSourceDataSelection.cs
- CompilationSection.cs
- MetadataArtifactLoaderFile.cs
- TileBrush.cs
- TriggerBase.cs
- WindowPatternIdentifiers.cs
- FormsAuthenticationTicket.cs
- ToggleButton.cs
- X509ThumbprintKeyIdentifierClause.cs
- _SingleItemRequestCache.cs
- MethodToken.cs
- EventInfo.cs
- DataList.cs
- SrgsDocumentParser.cs
- OdbcEnvironment.cs
- EmptyCollection.cs
- DataContract.cs
- DrawingCollection.cs
- XmlDomTextWriter.cs
- Slider.cs
- ValidationUtility.cs
- AssemblyEvidenceFactory.cs
- PeerApplicationLaunchInfo.cs
- SapiInterop.cs
- FixedTextContainer.cs
- DbProviderFactoriesConfigurationHandler.cs
- AppSettingsReader.cs
- AdRotator.cs
- XmlDesigner.cs
- HiddenFieldPageStatePersister.cs
- EventLog.cs
- UrlPath.cs
- PreProcessInputEventArgs.cs
- DebugView.cs
- DbProviderFactories.cs
- StagingAreaInputItem.cs
- SessionEndingCancelEventArgs.cs
- SystemGatewayIPAddressInformation.cs
- CompilerWrapper.cs
- MarkupCompilePass2.cs
- StrokeDescriptor.cs
- SubclassTypeValidator.cs
- MimeTypeAttribute.cs
- _WinHttpWebProxyDataBuilder.cs
- DataGrid.cs
- FieldCollectionEditor.cs
- XmlSerializationWriter.cs
- InfoCardClaim.cs
- WindowsTitleBar.cs
- UdpDiscoveryMessageFilter.cs
- ConfigXmlText.cs
- DeferredReference.cs
- XhtmlStyleClass.cs
- TraceSwitch.cs
- DoWorkEventArgs.cs
- SID.cs
- TextEditorCharacters.cs
- TypeElementCollection.cs
- TrustSection.cs
- ActivityPreviewDesigner.cs
- LinqMaximalSubtreeNominator.cs
- safelinkcollection.cs
- XmlNamespaceManager.cs
- NameTable.cs
- LabelLiteral.cs
- SchemaImporterExtension.cs
- TreeSet.cs
- PeerDefaultCustomResolverClient.cs
- ComboBoxItem.cs
- ProcessStartInfo.cs
- ThreadLocal.cs
- DataGridDesigner.cs
- ToolStripPanel.cs
- WinEventTracker.cs
- ActivityUtilities.cs
- MruCache.cs
- MediaPlayer.cs
- XamlSerializerUtil.cs
- SafeUserTokenHandle.cs
- SHA384.cs
- EntitySetDataBindingList.cs
- GraphicsPath.cs
- DataPagerFieldCollection.cs
- ImageCodecInfoPrivate.cs
- CollectionViewProxy.cs
- AbstractExpressions.cs