Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / ndp / fx / src / Xml / System / Xml / XPath / XPathNodeIterator.cs / 1 / 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. // //[....] //----------------------------------------------------------------------------- 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.
Link Menu
This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- EventHandlersStore.cs
- VirtualPath.cs
- thaishape.cs
- WindowsIdentity.cs
- WebPartsPersonalization.cs
- Point4DValueSerializer.cs
- NumericUpDownAccelerationCollection.cs
- ReaderWriterLockWrapper.cs
- ButtonColumn.cs
- ObjectItemCachedAssemblyLoader.cs
- PcmConverter.cs
- PrintController.cs
- Point3DCollectionConverter.cs
- SqlDataSourceDesigner.cs
- XmlDigitalSignatureProcessor.cs
- ListBindableAttribute.cs
- Globals.cs
- DecoderNLS.cs
- CompositeKey.cs
- RenderOptions.cs
- SHA512Managed.cs
- PerfCounters.cs
- DictionaryTraceRecord.cs
- WorkflowViewManager.cs
- Dynamic.cs
- _StreamFramer.cs
- ExpressionQuoter.cs
- TimeSpanValidator.cs
- DoubleAnimationBase.cs
- DataServiceHostWrapper.cs
- XamlStream.cs
- IndexedEnumerable.cs
- SerialStream.cs
- DefaultAuthorizationContext.cs
- ScopedKnownTypes.cs
- CatalogUtil.cs
- ThicknessAnimationUsingKeyFrames.cs
- Span.cs
- XmlDataSourceView.cs
- CorePropertiesFilter.cs
- GeneratedContractType.cs
- ByteAnimation.cs
- ScrollBarRenderer.cs
- MasterPageBuildProvider.cs
- SqlNamer.cs
- SqlClientFactory.cs
- BuildProvidersCompiler.cs
- WorkItem.cs
- _SafeNetHandles.cs
- CustomWebEventKey.cs
- XmlSchemaInclude.cs
- TrustLevelCollection.cs
- XmlSchemaAttribute.cs
- WebCodeGenerator.cs
- UnSafeCharBuffer.cs
- BindUriHelper.cs
- NumericExpr.cs
- DataGridViewAutoSizeColumnModeEventArgs.cs
- FontWeightConverter.cs
- SizeAnimationUsingKeyFrames.cs
- DataServiceResponse.cs
- TrimSurroundingWhitespaceAttribute.cs
- SQLInt32Storage.cs
- EncoderParameter.cs
- DecimalAverageAggregationOperator.cs
- HtmlInputImage.cs
- StructuredTypeInfo.cs
- QilScopedVisitor.cs
- FixedSchema.cs
- AssemblyCollection.cs
- DoWhile.cs
- FormsAuthenticationTicket.cs
- SoapIgnoreAttribute.cs
- DnsPermission.cs
- SerializationSectionGroup.cs
- TextEditorMouse.cs
- CommonDialog.cs
- XmlNavigatorStack.cs
- PriorityChain.cs
- ExpressionBuilderCollection.cs
- CacheAxisQuery.cs
- AuthorizationRule.cs
- MimeTypeAttribute.cs
- RestClientProxyHandler.cs
- PTUtility.cs
- ReferencedAssemblyResolver.cs
- PolicyLevel.cs
- IdentityModelDictionary.cs
- SiteOfOriginPart.cs
- RegexWorker.cs
- SqlError.cs
- GB18030Encoding.cs
- PresentationSource.cs
- BindUriHelper.cs
- HttpRequest.cs
- RegexCompilationInfo.cs
- ArgumentOutOfRangeException.cs
- InkCanvasSelection.cs
- AnimationException.cs
- ProgressBarBrushConverter.cs